如何知道类路径?

phe*_*mix 0 spring spring-mvc spring-4

我想读取properties文件密钥,我发现注释中有classpath要设置的属性@PropertySource

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

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

Vis*_*nan 5

What is class path ?

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

How to identify classpath ?

检查你的 IDE,构建路径中有哪些内容。构建路径中的文件夹位于类路径中。您可以在类路径中显式添加任意数量的文件夹和文件。

您可以访问类路径的文件夹/包中的任何内容,可以相对访问:)

类路径

参考