springboot 使用传统方式部署
2021-06-17 16:06
阅读:418
spring boot默认创建出来的应用程序是内嵌web容器的,直接运行jar文件就可以的,但通常我们也需要将程序部署到tomcat中,这需要做如下改进:
1.pom.xml修改
打包方式需要修改成war:
spring-boot-starter-web的配置中需要排除tomcat
spring-boot-starter-web
log4j-over-slf4j
spring-boot-starter-tomcat
同时为了应用能够正常编译,还需要加上tomcat的引用:
spring-boot-starter-tomcat
2.重写SpringBootServletInitializer类中的configure方法
-
@Configuration
-
@ComponentScan
-
@EnableAutoConfiguration
-
public class Application extends SpringBootServletInitializer {
-
-
-
@Override
-
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
-
return application.sources(Application.class);
-
}
-
-
-
public static void main(String[] args) {
-
SpringApplication.run(Application.class, args);
-
}
-
}
最后将应用打包成war包,并将war包部署到tomcat上就可以了.
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:springboot 使用传统方式部署
文章链接:http://soscw.com/index.php/essay/95118.html
文章标题:springboot 使用传统方式部署
文章链接:http://soscw.com/index.php/essay/95118.html
评论
亲,登录后才可以留言!