In the actual production and development servers, the base path is set with the code below.
private static String FILE_DIR = System.getProperty("user.dir") + File.separator + "FILES"; I want to move this code to application.properties.
Is there a way to use a path like System.getProperty in application.properties?
Sorry for such a novice question