我想阅读properties
个文件密钥,我发现在classpath
注释中设置了@PropertySource
属性:
@Configuration
@PropertySources({
@PropertySource("classpath:config.properties"),
@PropertySource("classpath:db.properties")
})
public class AppConfig {
//...
}
应该在何处放置属性文件以及如何知道注释中的类路径?
答案 0 :(得分:0)
您有两个选择
在shared.loader
中定义/conf/catalina.properties
。示例:
shared.loader = D:\ data \ properties
如果您使用的是maven,请将您的媒体资源置于/src/main/resources
答案 1 :(得分:0)
What is class path ?
类路径是Java运行时环境搜索类和其他资源文件的路径。
How to identify classpath ?
检查您的IDE,构建路径中的所有内容。构建路径中的文件夹位于类路径中。 您可以在类路径中明确添加任意数量的文件夹和文件。
您可以访问classpath / packages中的任何内容,可以相对访问类路径:)
答案 2 :(得分:0)
我在tuto找到了该位置。