springboot的在打包的时候,部分包没被打进来
什么情况下会出问题
systemPath,代表引入程序本地带的jar包


一旦你打包了,程序虽然会打包成功但是axis.jar没有被打包进去
解决方式
把这个jar包装到maven里面
mvn install:install-file -DgroupId=org.apache.axis -DartifactId=axis -Dversion=1.0 -Dpackaging=jar -Dfile=src\main\libs\axis.jar

maven写法

