Skip to content
Advertisement

how to change springboot application start directory?

I run a springboot application as service on CENTOS7. The default start directory is “/”, now I want change to “/home/centos/fpcyproxy” where the configuration file is in.
How to change it?

logging file:

JavaScript

content of the service configuration file:

JavaScript

OS version:

JavaScript

Java version:

JavaScript

Advertisement

Answer

If you are talking about homedir for application – try to set WorkingDirectory property:

JavaScript

But if you are talking about loading application.properties that are located in external directory, try to set next property

JavaScript

https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html#boot-features-external-config-application-property-files

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement