我的项目有以下文件夹结构:
我正在使用@PropertySource加载属性文件 当我运行代码时,我找不到属性文件
@Configuration
@ComponentScan(basePackages = "com.abmt.*")
@PropertySource("classpath:application.properties")
public class AppConfig {
@Bean
public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();
}}
属性文件放在资源文件夹中。请单击链接以查看文件夹结构。