赞
踩
- <!-- 利用maven打包项目的配置,给项目打包 -->
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>2.3.5.RELEASE</version>
- <configuration>
- <!--如果没有fork配置,devtools不起作用,即项目修改后不会重新启动 -->
- <fork>false</fork>
- </configuration>
- </plugin>log4j2.xml
- </plugins>
- </build>
给<artifactId>spring-boot-maven-plugin</artifactId>
加上版本号<version>2.3.5.RELEASE</version>
具体加的版本号和你的pom里springboot版本要一致
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。