其他分享
首页 > 其他分享> > 开发默认加上的配置

开发默认加上的配置

作者:互联网

1、

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>

 作用:让全局配置文件有提示

 

2、

<configuration>
<excludes>
<exclude>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</exclude>
</excludes>
</configuration>

作用:让SpringBoot重新打包的时候,不要把 上面的(processor)配置处理器打包到jar里面,功能不会有影响,但打包的jar包里面类太多了,jvm一启动要加载这么多没用的东西,这跟业务功能无关,这是开发的一个小提示

标签:加上,spring,配置,boot,默认,jar,springframework,processor,打包
来源: https://www.cnblogs.com/Ghss-Qishi/p/16485400.html