本文主要是介绍svn导入springboot项目之后发现 SpringApplication 和 SpringBootServletInitializer报错,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
SpringApplication.run(Application.class, args); 和 extends SpringBootServletInitializer 这两个报错
检查推测 应该是maven下载jar包错误的问题。
SpringApplication 这个对应 pom里的
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
去maven仓库检查 发现指定的版本确实jar包错误 这个时候可以删除仓库错误jar包文件,重新下载jar
或者直接更换仓库中已有正常的版本。
SpringBootServletInitializer 这个是通过更改pom然后运行maven -- update project完成的
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.17.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>4.1.6.RELEASE</version>
</dependency>
</dependencies>
这篇关于svn导入springboot项目之后发现 SpringApplication 和 SpringBootServletInitializer报错的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!