项目依赖Springboot jar失败解决方案

1.原因

因为springboot-maven-plugin打包的第一级目录为Boot-INF,无法引用

2.解决

不能使用springboot项目自带的打包插件进行打包


  
   
     org.springframework.boot
     spring-boot-maven-plugin
   
  

使用传统项目的maven打包


  
   
     org.apache.maven.plugins
     maven-compiler-plugin
     
      1.8 
      1.8 
     
   
  

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

你可能感兴趣的:(项目依赖Springboot jar失败解决方案)