有的时候经常本地跑项目没事 部署到服务器的时候 会报ClassNotFundException 找不到对应的类
解决方法:
<dependency>
<groupId>com.stylefeng</groupId>
<artifactId>guns-core</artifactId>
<version>2.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/lib/guns-core-2.0.0.jar</systemPath>
</dependency>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
就可以解决了