如何知道类路径?

时间:2016-08-26 06:40:03

标签: spring spring-mvc spring-4

我想阅读properties个文件密钥,我发现在classpath注释中设置了@PropertySource属性:

@Configuration
@PropertySources({
    @PropertySource("classpath:config.properties"),
    @PropertySource("classpath:db.properties")
})
public class AppConfig {
    //...
}

应该在何处放置属性文件以及如何知道注释中的类路径?

3 个答案:

答案 0 :(得分:0)

您有两个选择

  1. shared.loader中定义/conf/catalina.properties。示例:

    shared.loader = D:\ data \ properties

  2. 如果您使用的是maven,请将您的媒体资源置于/src/main/resources

答案 1 :(得分:0)

What is class path ?

类路径是Java运行时环境搜索类和其他资源文件的路径。

How to identify classpath ?

检查您的IDE,构建路径中的所有内容。构建路径中的文件夹位于类路径中。 您可以在类路径中明确添加任意数量的文件夹和文件。

您可以访问classpath / packages中的任何内容,可以相对访问类路径:)

Classpath

Refer

答案 2 :(得分:0)

我在tuto找到了该位置。