我有一个使用Spring并加载其自己的属性文件的库
@Configuration
@PropertySource("classpath:connectors.properties")
使用此JAR作为Maven依赖项并将该类置于扫描状态时,出现以下错误:
java.io.FileNotFoundException: class path resource [classpath:connectors.properties] cannot be opened because it does not exist
在这种情况下正确的方法是什么?
谢谢
答案 0 :(得分:0)
实际上,正如@Barath所指出的,该文件并未打包在从属JAR中,因为它存在于src / test / resources中,而不是src / main / resources中