我在SysV中有一个作为服务安装的 Spring Boot 应用程序,因此我在 /etc/init.d/myapp 中创建了一个指向 /home/myuser/app.jar 的符号链接。
然后我以这种方式启动我的应用程序:
service app start --spring.config.location=application.properties
在我的 application.properties 中,我需要一个环境变量,请参阅:
app.info.version=${APP_VERSION}
我总是export APP_VERSION=1
在启动服务之前执行,但 ${APP_VERSION} 总是为空。然后我尝试以这种方式手动执行:
java -jar app.jar --spring.config.location=application.properties
一切正常,环境变量按照我的预期配置。
任何提示如何在 SysV 中使用 Spring Boot 服务中的环境变量?