spring加载properties文件
时间: 2023-06-05 08:47:14 浏览: 168
Spring加载properties文件的方法
Spring可以通过使用PropertyPlaceholderConfigurer类来加载properties文件。这个类可以读取properties文件中的键值对,并将它们注入到Spring的bean中。在Spring的配置文件中,可以使用以下方式来加载properties文件:
1. 在XML配置文件中使用<context:property-placeholder>标签来加载properties文件。
2. 在Java配置文件中使用@PropertySource注解来加载properties文件。
无论使用哪种方式,都需要指定properties文件的路径和文件名。一旦加载了properties文件,就可以在Spring的bean中使用${key}的形式来引用其中的值。
阅读全文