类路径资源[classpath *:/ application.properties]无法打开,因为它不存在

时间:2015-10-19 20:39:46

标签: spring

我的项目有以下文件夹结构:

enter image description here

我正在使用@PropertySource加载属性文件 当我运行代码时,我找不到属性文件

    @Configuration
    @ComponentScan(basePackages = "com.abmt.*")
    @PropertySource("classpath:application.properties")
    public class AppConfig {
    @Bean
    public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
    return new PropertySourcesPlaceholderConfigurer();
    }}

属性文件放在资源文件夹中。请单击链接以查看文件夹结构。

0 个答案:

没有答案