I\'m loading application settings such as JDBC connection info from a properties file using PropertyPlaceholderConfigurer. I\'d like to also have other settings
How about standalone spring boot application? The java application looks like:
@SpringBootApplication
@EnableScheduling
@EnableConfigurationProperties(TaskProperty.class)
public class JobApplication {
/* @Autowired
private TaskProperty taskProperty;
*/
public static void main(String[] args) {
SpringApplication.run(JobApplication.class, args);
}
}