Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.0k views
in Technique[技术] by (71.8m points)

java - File inside resource folder is not visible for docker file

I have a spring boot application and I am consuming external soap service and I have requirement to put the wsdl file local and I put it in resources folder under wsdl folder. I am reading that file which is inside resources folder under wsdl folder -

ClassPathResource resource = new ClassPathResource("wsdl/custom.wsdl");
File file = resource.getFile();
wsdlURL = file.toURI().toURL();

I have created a simple Dockerfile with below content and running the spring boot application

FROM openjdk:8-jdk-alpine
ADD target/*.jar /app/app.jar
CMD ["java", "-jar", "/app/app.jar"]
EXPOSE 8080

BUt I am getting below error.

java.io.FileNotFoundException: class path resource [wsdl/custom.wsdl] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/app/app.jar!/BOOT-INF/classes!/wsdl/custom.wsdl

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...