具有Spring ClassPathResource

时间:2018-07-18 09:09:56

标签: spring maven spring-boot classpath pom.xml

我在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中的类路径是

0 个答案:

没有答案