- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,
我正在尝试为大学类(class)创建一个 Java Spring Web 应用程序。我创建了连接到两个服务类的 Rest Controller 类。服务类通过JPA 连接到数据库。当我摆脱与构建问题相关的错误时,我决定检查一切是否在 swagger 中正确可见。这里出现了问题,因为尽管创建了配置文件,但服务器无法启动。应用程序编译正确,但 Tomcat 服务器未出现,并且无法通过 localhost:8080 连接到服务器。如果有任何错误,我会处理,但在控制台中一切看起来都很好,或者我只是这么认为。
@RestController
public class JDBCController {
@Autowired
private IDelegationService delegationService;
@Autowired
private IUserService userService;
@RequestMapping(value = "/registerUser", method = RequestMethod.POST)
@ResponseBody
public void registerUser(@ModelAttribute User user) {
userService.save(user);
}
@RequestMapping(value = "/getAllUsers", method = RequestMethod.GET)
@ResponseBody
public List<User> getAllUsers() {
return userService.findAll();
}
@RequestMapping(value = "/changePassword", method = RequestMethod.PUT)
@ResponseBody
public void changePassword(@RequestParam("userId") long userId, @RequestParam("newPassword") String newPassword) {
userService.updatePassword(userId, newPassword);
}
@RequestMapping(value = "/deleteUserById", method = RequestMethod.DELETE)
@ResponseBody
public boolean deleteUserById(@RequestParam("userId") long userId) {
return userService.deleteById(userId);
}
@RequestMapping(value = "/getAllUsersByRoleName", method = RequestMethod.GET)
@ResponseBody
public List<User> getAllUsersByRoleName(@RequestParam("roleName") String roleName) {
return userService.getAllUsersByRoleName(roleName);
}
@RequestMapping(value = "/addDelegation", method = RequestMethod.POST)
@ResponseBody
public void addDelegation(@RequestParam("userId") long userId, @ModelAttribute Delegation delegation) {
delegationService.save(userId, delegation);
}
@RequestMapping(value = "/removeDelegation", method = RequestMethod.DELETE)
@ResponseBody
public boolean removeDelegation(@RequestParam("userId") long userId,
@RequestParam("delegationId") long delegationId) {
if (delegationId != 0L) {
return delegationService.deleteById(delegationId);
} else if (userId != 0L) {
return delegationService.deleteByUser(userId);
}
return false;
}
@RequestMapping(value = "/changeDelegation", method = RequestMethod.PUT)
@ResponseBody
public void changeDelegation(@RequestParam("delegationId") long delegationId,
@ModelAttribute Delegation delegation) {
delegationService.updateDelegation(delegationId, delegation);
}
@RequestMapping(value = "/getAllDelegations", method = RequestMethod.GET)
@ResponseBody
public List<Delegation> getAllDelegations(){
return delegationService.findAll();
}
@RequestMapping(value = "/getAllDelegationsOrderByDateStartDesc", method = RequestMethod.GET)
@ResponseBody
public List<Delegation> getAllDelegationsOrderByDateStartDesc(){
return delegationService.findAllOrderByDateStartDesc();
}
@RequestMapping(value = "/getAllDelegationsByUserOrderByDateStartDesc", method = RequestMethod.GET)
@ResponseBody
public List<Delegation> getAllDelegationsByUserOrderByDateStartDesc(@RequestParam("userId") Long userId){
return delegationService.findByUserOrderByDateStartDesc(userId);
}
}
@Configuration
@EnableSwagger2
public class SpringFoxConfig {
@Bean
public Docket mainConfig() {
return new Docket(DocumentationType.SWAGGER_2)
.select().apis(RequestHandlerSelectors.any())
.paths(PathSelectors.any())
.build()
.pathMapping("/swagger")
.directModelSubstitute(LocalDate.class, String.class)
.genericModelSubstitutes(ResponseEntity.class);
}
}
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.2.5.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
</parent>
<groupId>com.project</groupId>
<artifactId>Laboratorium1</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>Laboratorium1</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>2.9.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
[INFO] Scanning for projects...
[INFO]
[INFO] ---------------------< com.project:Laboratorium1 >----------------------
[INFO] Building Laboratorium1 0.0.1-SNAPSHOT
[INFO] --------------------------------[ jar ]---------------------------------
[INFO]
[INFO] >>> spring-boot-maven-plugin:2.2.5.RELEASE:run (default-cli) > test-compile @ Laboratorium1 >>>
[INFO]
[INFO] --- maven-resources-plugin:3.1.0:resources (default-resources) @ Laboratorium1 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] Copying 1 resource
[INFO] Copying 0 resource
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:compile (default-compile) @ Laboratorium1 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] --- maven-resources-plugin:3.1.0:testResources (default-testResources) @ Laboratorium1 ---
[INFO] Using 'UTF-8' encoding to copy filtered resources.
[INFO] skip non existing resourceDirectory C:\Users\Admin\eclipse-workspace\PSS_Kulesza_Durol\src\test\resources
[INFO]
[INFO] --- maven-compiler-plugin:3.8.1:testCompile (default-testCompile) @ Laboratorium1 ---
[INFO] Nothing to compile - all classes are up to date
[INFO]
[INFO] <<< spring-boot-maven-plugin:2.2.5.RELEASE:run (default-cli) < test-compile @ Laboratorium1 <<<
[INFO]
[INFO]
[INFO] --- spring-boot-maven-plugin:2.2.5.RELEASE:run (default-cli) @ Laboratorium1 ---
[INFO] Attaching agents: []
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.2.5.RELEASE)
2020-03-16 20:18:07.785 INFO 4176 --- [ main] c.p.L.Laboratorium1Application : Starting Laboratorium1Application on DESKTOP-7SPKPTP with PID 4176 (C:\Users\Admin\eclipse-workspace\PSS_Kulesza_Durol\target\classes started by Admin in C:\Users\Admin\eclipse-workspace\PSS_Kulesza_Durol)
2020-03-16 20:18:07.788 INFO 4176 --- [ main] c.p.L.Laboratorium1Application : No active profile set, falling back to default profiles: default
2020-03-16 20:18:08.357 INFO 4176 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Bootstrapping Spring Data JPA repositories in DEFAULT mode.
2020-03-16 20:18:08.456 INFO 4176 --- [ main] .s.d.r.c.RepositoryConfigurationDelegate : Finished Spring Data repository scanning in 90ms. Found 3 JPA repository interfaces.
2020-03-16 20:18:08.898 INFO 4176 --- [ main] o.hibernate.jpa.internal.util.LogHelper : HHH000204: Processing PersistenceUnitInfo [name: default]
2020-03-16 20:18:09.040 INFO 4176 --- [ main] org.hibernate.Version : HHH000412: Hibernate ORM core version 5.4.12.Final
2020-03-16 20:18:09.187 INFO 4176 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.1.0.Final}
2020-03-16 20:18:09.521 INFO 4176 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Starting...
2020-03-16 20:18:10.116 INFO 4176 --- [ main] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Start completed.
2020-03-16 20:18:10.137 INFO 4176 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.MySQL8Dialect
2020-03-16 20:18:11.044 INFO 4176 --- [ main] o.h.e.t.j.p.i.JtaPlatformInitiator : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2020-03-16 20:18:11.051 INFO 4176 --- [ main] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2020-03-16 20:18:11.720 INFO 4176 --- [ main] c.p.L.Laboratorium1Application : Started Laboratorium1Application in 4.355 seconds (JVM running for 4.983)
2020-03-16 20:18:11.726 INFO 4176 --- [extShutdownHook] j.LocalContainerEntityManagerFactoryBean : Closing JPA EntityManagerFactory for persistence unit 'default'
2020-03-16 20:18:11.729 INFO 4176 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown initiated...
2020-03-16 20:18:11.734 INFO 4176 --- [extShutdownHook] com.zaxxer.hikari.HikariDataSource : HikariPool-1 - Shutdown completed.
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 8.320 s
[INFO] Finished at: 2020-03-16T20:18:11+01:00
[INFO] ------------------------------------------------------------------------
提前感谢您的帮助。\
@SpringBootApplication
public class Laboratorium1Application {
public static void main(String[] args) {
SpringApplication.run(Laboratorium1Application.class, args);
}
}
现在,好像应该在此处添加一些内容,以便可以看到配置文件。
现在我才注意到没有html文件。看看这些例子,我认为它会自行生成,但显然我错了。有人知道我可以从哪里下载它。
最佳答案
您需要在 pom.xml 文件中一个额外的依赖项来启动 Spring Boot(嵌入式 Tomcat)服务器:spring-boot-starter-web 添加该依赖项即可一切顺利。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
关于Java Spring 与 swagger2 未启动服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60712497/
我尝试阅读有关 Spring BOM、Spring Boot 和 Spring IO 的文档。 但是没有说明,我们应该如何一起使用它们? 在我的项目中,我们已经有了自己的 Parent POM ,所以
我正在开发的很酷的企业应用程序正在转向 Spring。这对所有团队来说都是非常酷和令人兴奋的练习,但也是一个巨大的压力源。我们所做的是逐渐将遗留组件移至 Spring 上下文。现在我们有一个 huuu
我正在尝试使用 @Scheduled 运行 Spring 批处理作业注释如下: @Scheduled(cron = "* * * * * ?") public void launchMessageDi
我对这两个概念有点困惑。阅读 Spring 文档,我发现,例如。 bean 工厂是 Spring 容器。我还读到“ApplicationContext 是 BeanFactory 的完整超集”。但两者
我们有一个使用 Spring BlazeDS 集成的应用程序。到目前为止,我们一直在使用 Spring 和 Flex,它运行良好。我们现在还需要添加一些 Spring MVC Controller 。
假设我有一个类(class) Person带属性name和 age ,它可以像这样用 Spring 配置: 我想要一个自定义的 Spring 模式元素,这很容易做到,允许我在我的 Sp
如何在 Java 中以编程方式使用 Spring Data 创建 MongoDB 复合索引? 使用 MongoTemplate 我可以创建一个这样的索引:mongoTemplate.indexOps(
我想使用 spring-complex-task 执行我的应用程序,并且我已经构建了复杂的 spring-batch Flow Jobs,它执行得非常好。 你能解释一下spring批处理流作业与spr
我实现了 spring-boot 应用程序,现在我想将它用作非 spring 应用程序的库。 如何初始化 lib 类,以便 Autowiring 的依赖项按预期工作?显然,如果我使用“new”创建类实
我刚开始学习 spring cloud security,我有一个基本问题。它与 Spring Security 有何不同?我们是否需要在 spring boot 上构建我们的应用程序才能使用 spr
有很多人建议我使用 Spring Boot 而不是 Spring 来开发 REST Web 服务。我想知道这两者到底有什么区别? 最佳答案 总之 Spring Boot 减少了编写大量配置和样板代码的
您能向我解释一下如何使用 Spring 正确构建 Web 应用程序吗?我知道 Spring 框架的最新版本是 4.0.0.RELEASE,但是 Spring Security 的最新版本是 3.2.0
我如何才能知道作为 Spring Boot 应用程序的一部分加载的所有 bean 的名称?我想在 main 方法中有一些代码来打印服务器启动后加载的 bean 的详细信息。 最佳答案 如spring-
我有一个使用 Spring 3.1 构建的 RESTful API,也使用 Spring Security。我有一个 Web 应用程序,也是一个 Spring 3.1 MVC 应用程序。我计划让移动客
升级到 Spring 5 后,我在 Spring Rabbit 和 Spring AMQP 中遇到错误。 两者现在都设置为 1.5.6.RELEASE 有谁知道哪些版本应该与 Spring 5 兼容?
我现在已经使用 Spring Framework 3.0.5 和 Spring Security 3.0.5 多次了。我知道Spring框架使用DI和AOP。我还知道 Spring Security
我收到错误 Unable to Location NamespaceHandler when using context:annotation-config running (java -jar) 由
在 Spring 应用程序中嵌入唯一版本号的策略是什么? 我有一个使用 Spring Boot 和 Spring Web 的应用程序。 它已经足够成熟,我想对其进行版本控制并在运行时看到它显示在屏幕上
我正在使用 spring data jpa 进行持久化。如果存在多个具有相同名称的实体,是否有一种方法可以将一个实体标记为默认值。类似@Primary注解的东西用来解决多个bean的依赖问题 @Ent
我阅读了 Spring 框架的 DAOSupport 类。但是我无法理解这些 DAOSuport 类的优点。在 DAOSupport 类中,我们调用 getXXXTemplate() 方法来获取特定的
我是一名优秀的程序员,十分优秀!