1.原因
因为springboot-maven-plugin打包的第一级目录为Boot-INF,无法引用
2.解决
不能使用springboot项目自带的打包插件进行打包
1
2
3
4
5
6
7
8
|
< build > < plugins > < plugin > < groupId >org.springframework.boot</ groupId > < artifactId >spring-boot-maven-plugin</ artifactId > </ plugin > </ plugins > </ build > |
使用传统项目的maven打包
1
2
3
4
5
6
7
8
9
10
11
12
|
< build > < plugins > < plugin > < groupId >org.apache.maven.plugins</ groupId > < artifactId >maven-compiler-plugin</ artifactId > < configuration > < source >1.8</ source > <!--指明源码用的Jdk版本--> < target >1.8</ target > <!--指明打包后的Jdk版本--> </ configuration > </ plugin > </ plugins > </ build > |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://www.cnblogs.com/taohaijun/p/10578998.html