企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 一、修改打包方式 ~~~ <packaging>war</packaging> ~~~ 将上面的代码加入到pom.xml文件刚开始的位置,如下: ![](https://img.kancloud.cn/bc/5d/bc5ddb27464052b7895786c2fd04ddde_678x274.png) ## 二、 排除内置tomcat的依赖 我们使用外置的tomcat,自然要将内置的嵌入式tomcat的相关jar排除。 ~~~ <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> </exclusions> </dependency> ~~~ 接上节,去掉undertow ![](https://img.kancloud.cn/0d/59/0d598557fe070dfcbc810a1ef27847cf_932x515.png) 因为去掉所有server依赖后程序里的servlet无法找到对应的依赖包,所以需要我们自己引入一个servlet依赖。 ~~~ <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>4.0.1</version> </dependency> ~~~ mybatis因为是配置在pom中,利用pom导出war包会导致逆向重写mapper,所以这段需要注释掉。 ~~~ <!--<plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.7</version> <configuration> &lt;!&ndash; generator 工具配置文件的位置 &ndash;&gt; <configurationFile>src/main/resources/mybatis-generator/generatorConfig.xml</configurationFile> <verbose>true</verbose> &lt;!&ndash; 是否覆盖 &ndash;&gt; &lt;!&ndash; 此处要特别注意,如果不加这个设置会导致每次运行都会在原目录再次创建&ndash;&gt; <overwrite>true</overwrite> </configuration> <executions> <execution> <id>Generate MyBatis Artifacts</id> <goals> <goal>generate</goal> </goals> </execution> </executions> <dependencies> <dependency> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-core</artifactId> <version>1.3.7</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.46</version> </dependency> </dependencies> </plugin>--> ~~~ ![](https://img.kancloud.cn/96/11/961196783d9cd9be7672733042996888_905x733.png) ## 三、新增加一个类继承SpringBootServletInitializer实现configure: 为什么继承该类,SpringBootServletInitializer源码注释: Note that a WebApplicationInitializer is only needed if you are building a war file and deploying it. If you prefer to run an embedded web server then you won't need this at all. 注意,如果您正在构建WAR文件并部署它,则需要WebApplicationInitializer。如果你喜欢运行一个嵌入式Web服务器,那么你根本不需要这个。 ~~~ public class ServletInitializer extends SpringBootServletInitializer { @Override protected SpringApplicationBuilder configure(SpringApplicationBuilder builder) { //此处的Application.class为带有@SpringBootApplication注解的启动类 return builder.sources(BootLauchApplication.class); } } ~~~ ## 四、build要有finalName标签 pom.xml中的构建build代码段,要有应用最终构建打包的名称。 ~~~ <finalName>boot-lauch</finalName> ~~~ ![](https://img.kancloud.cn/99/49/994918d83e410e564449d6f336bbcafc_809x206.png) ## 五、打包与运行 先clean把编译内容清空一下 ![](https://img.kancloud.cn/cb/61/cb614b7963e160887e4702f504add123_624x604.png) war方式打包,打包结果将存储在项目的target目录下面。然后将war包部署到外置Tomcat上面: ![](https://img.kancloud.cn/0e/e6/0ee68f1497aa67e688ebd4bc4fdd4743_739x478.png) 输入内容如下,含义是不打包test,依据pom.xml来进行打包 ~~~ package -Dmaven.test.skip=true -f pom.xml ~~~ ![](https://img.kancloud.cn/7c/de/7cde78e5b92f784c3269d73bb40d981d_1715x1028.png) ![](https://img.kancloud.cn/ac/ed/aced3d2f4127abf6a2fde3f9b0a95af7_637x244.png) ![](https://img.kancloud.cn/42/3f/423f08831644fe14b7d0eeab22c1a12d_622x436.png) ![](https://img.kancloud.cn/64/d9/64d945783d3c6516c44a521d8826247f_613x837.png) ![](https://img.kancloud.cn/db/a8/dba883416baf41f1f0dea2e59510d237_1318x520.png) 在外置tomcat中运行:${Tomcat\_home}/bin/目录下执行startup.bat(windows)[或者startup.sh](http://xn--startup-gf7nh96s.sh/)(linux),然后通过浏览器访问应用,测试效果。 ![](https://img.kancloud.cn/5e/c6/5ec6c7121b89fcee8cd4e90a8cde6296_965x376.png) ![](https://img.kancloud.cn/e8/f4/e8f4126a45e2bb6ad56d12909c7d23af_955x707.png) ![](https://img.kancloud.cn/91/ad/91ad39f661c873c971197d1a5dc54cc4_1139x597.png) > 注意事项: > 使用外部Tomcat部署访问的时候,application.properties(或者application.yml)中的如下配置将失效,请使用外置的tomcat的端口,tomcat的webapps下项目名进行访问。 [http://127.0.0.1:8080/boot-lauch/template/thymeleaf](http://127.0.0.1:8080/boot-lauch/template/thymeleaf) ![](https://img.kancloud.cn/c1/69/c169ec911c2075f91cbc1b9a1f57c539_1251x734.png) ## 踩坑 1、之前的ArticleVO和mapper中ID格式不一样会报错,.intValue() 转义后可以正常打war包。 ![](https://img.kancloud.cn/95/18/9518b5304c3e5fb0f43972e2bb13698c_602x166.png) 2、如果mybatis是利用pom.xml文件逆向自动生成的,则在maven打war包时会逆向重新编译mapper文件导致服务报错无法启动,所以需要修改pom.xml注释掉逆向部分。