最近在用spring boot 弄了一个学习型的项目,学习一下spring boot怎样构建项目,spring boot 本身是内置tomcat的,如果想部署到外部tomcat, 就要做一些改变。
1 默认打包方式是jar包,改成war包打包,在pom.xml 里
<packaging>war</packaging>
2 在maven里排除自带tomcat插件,有两种方法
第一种:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>