mik*_*ken 4 java command-line-arguments docker spring-boot dockerfile
我正在尝试将命令行args传递给在Docker容器中运行的Spring Boot应用程序的main方法。从命令行运行,我将执行以下操作:
$ mvn spring-boot:run -Dspring-boot.run.arguments=--greeting=Hello,--recipient=World
Run Code Online (Sandbox Code Playgroud)
该应用程序需要提取这些arg并对其进行一些处理:
public static void main(String[] args) {
Options options = new Options();
Option greeting = new Option("-g", "greeting", true, "Greeting");
greeting.setRequired(true);
greeting.addOption(greeting);
Option recipient = new Option("-r", "recipient", true, "Recipient");
recipient.setRequired(true);
recipient.addOption(recipient);
try {
cmd = parser.parse(options, args);
} catch (ParseException e) {
System.out.println(e.getMessage());
formatter.printHelp("utility-name", options);
System.exit(1);
}
// Do some processing using these args ...
// Run the Spring Boot app
SpringApplication.run(SpringBootApp.class, args);
}
Run Code Online (Sandbox Code Playgroud)
我试过简单地使用-e标志传递它们:
docker run -p 8080:8080 -d -e "greeting=Hello" -e "recipient=World" test-image
Run Code Online (Sandbox Code Playgroud)
我的Dockerfile样子是这样的:
FROM openjdk:8-jdk-alpine
VOLUME /tmp
COPY ./target/spring-boot-app-0.0.1-SNAPSHOT.jar app.jar
ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
Run Code Online (Sandbox Code Playgroud)
由于需要选项(args),因此我不断收到错误消息,并且应用程序退出。
Evg*_*tov 15
您可以在run命令中的 docker 映像名称之后提供所有命令行参数。
例子:
docker run -p 8080:8080 test-image --recipient="World"--greeting="Hello"
Run Code Online (Sandbox Code Playgroud)
您可以尝试修改ENTRYPOINT你Dockerfile这样的:
ENTRYPOINT exec java -jar -Dspring-boot.run.arguments=--greeting=Hello,--recipient=World
Run Code Online (Sandbox Code Playgroud)
或者,您可以在运行时传递参数:
docker run -p 8080:8080 test-image --recipient="World"--greeting="Hello"
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3134 次 |
| 最近记录: |