0

所以我有我的 spring bott 应用程序:

@Configuration
@PropertySource("${configuration.file}")
public class Application extends SpringBootServletInitializer implements CommandLineRunner {
...
    public static void main(String[] args) throws IOException {
        SpringApplication app = new SpringApplication(Application.class);
        System.setProperty("configuration.file","file:"+"path to my file");
        app.run(args);
    }
...

当我在 windows configuration.file 上运行我的应用程序时,文件设置正确但是当我在 tomcat 服务器上运行它时,我得到:

Could not resolve placeholder 'configuration.file' in string value "${configuration.file}"

问题的原因可能是什么?

4

1 回答 1

1

很明显,这是由于定义的 @PropertySource 注释存在问题。您需要定义要在该注释中定义的属性文件的实际值,例如 xyz.properties。你也可以在那里给占位符。理想的做法是,

@Configuration
 @PropertySource("classpath:/com/${my.placeholder:default/path}/app.properties")
public class AppConfig {
 @Autowired
 Environment env;

 @Bean
 public TestBean testBean() {
     TestBean testBean = new TestBean();
     testBean.setName(env.getProperty("testbean.name"));
     return testBean;
 }

}

在此处查看注释的不同示例

于 2015-10-13T07:34:20.297 回答