SpringBoot零基础入门指南2--在idea中用tomcat发布项目
在idea中用tomcat发布项目 使用SpringBoot启动程序,虽然速度快,但是不易调试,因此在开发中还是使用tomcat进行程序发布 1、修改pom.xml文件 <packaging>jar</packaging> ——》<packaging>war</packaging> 并添加热部署依赖 <!--开发人员工具--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <scope>runtime</scope> </dependency> 重新导入 另外还可以添加一些编译配置,以便控制编译的JDK版本,减少版本的兼容的问题,此处不是必须。 在<properties>内部添加 <plugin.mybatis.generator>1.3.1</plugin.mybatis.generator> <plugin.maven-compiler>3.1</plugin.maven-compiler> <plugin.maven-surefire>2.18.1</plugin.maven-surefire> <skipTests>true</skipTests> 在<plugins>内部添加 <plugin>