我在pom.xml中指定了一个classpathprefix
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>mylib/</classpathPrefix>
<mainClass>mymain</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
但是当我尝试从classpath访问spring boot应用程序中的文件时,它会尝试进入我的jar并给我以下错误:
class path resource [myfile.txt] cannot be resolved to absolute file path because it does not reside in the file system jar:file:/MyPath/Myjar.jar!/
我知道要解决此问题,我应该使用resourceLoader.getInputStream
而不是resourceLoader.getFile
。
但是我的问题是,当我在pom.xml中将classpathprefix
指定为mylib
目录时,为什么jar中的类路径是