假设你从maven运行一个spring批处理程序:
mvn spring-boot:run -Dspring.batch.job.names=MyJobNameHere
如果我想发送作业参数,该怎么办?我该怎么做?
oknwwptz1#
在this answer中,我发现您可以使用以下命令将参数发送到spring Boot 应用程序中
-Dspring-boot.run.arguments="param1=value1 param2=value2"
当运行Spring Batch时,同样的技术似乎也有效。
1条答案
按热度按时间oknwwptz1#
在this answer中,我发现您可以使用以下命令将参数发送到spring Boot 应用程序中
当运行Spring Batch时,同样的技术似乎也有效。