9 lines
262 B
Java
9 lines
262 B
Java
package tourplaner.business;
|
|
|
|
import org.springframework.beans.factory.annotation.Value;
|
|
|
|
public class ConfigHelper {
|
|
@Value("${configFilesPath:./config}")
|
|
private String filesPath; // Run with -DconfigFilesPath=<configFilesPath> parameter to override
|
|
}
|