如果我在Spring XML中设置了2个.properties文件,那么:
<util:properties id="serverProperties" location="file:./applications/MyApplication/server.properties"/>
<util:properties id="someConfig" location="file:./applications/MyApplication/config.properties"/>
如何通过注释将这些属性文件注入到java.util.Properties
?
如何通过Spring注释获取特定属性?
干杯!
答案 0 :(得分:46)
@Autowired
@Qualifier("serverProperties")
private Properties serverProperties;
@Autowired
@Qualifier("someConfig")
private Properties otherProperties;
或
@Resource(name = "serverProperties")
private Properties serverProperties;
@Resource(name = "someConfig")
private Properties otherProperties;
通常,@ Autowired用于Spring中的类型自动装配,而@Resource用于按名称。 @ Autowired + @ Qualifier可以兼作自动装配,但它真正意味着可以通过fine-tune the type的能力进行自动装配。
答案 1 :(得分:16)
因为这个问题有很多热门话题。我认为使用SpEL(Spring Expression Language)指出另一个选项是值得的 - 如果你需要特定的属性,可以使用特定bean属性的@Value注释注入它们;
class SomeClass {
@Value("#{serverProperties['com.svr.prop']}")
private String aServerCfgProperty;
@Value("#{someConfig['another.config.setting']}")
private String someOtherProperty;
}
您不需要使用索引语法['index.val']
,您可以直接获取它;
@Value("#{someConfig}")
private Properties someConfig
@Value("#{serverProperties}")
private Properties svrProps;
我发现这非常有用,并且不再使用通过@ Resource / @ Autowired直接注入的属性对象。
将@Value
与索引的Properties对象一起使用的另一个好理由是,如果项目中的.properties文件也很好,某些IDE(例如IntelliJ)可以重构实际的属性名称。如果你想在属性文件中进行包含/嵌套/替换而不使用Spring的PropertiesPlaceholderConfigurer
类(遗憾的是它没有暴露它的属性),另一个提示是使用类似EProperties(扩展本机Java属性对象)的东西。 - 使用SpEL索引['key']
bean需要是Map<>
的实例,即Java Properties对象所做的扩展映射... ...
最后,SpEL的另一个优点是你可以直接访问bean的属性。例如,如果上面示例中的SomeClass
是一个Spring bean,例如someClass
然后在AnotherBeanClass中我们可以拥有;
@Value("#{someClass.someOtherProperty}")
private String injectedBeanProp
您也可以调用getter方法:
@Value("#{someClass.getSomeOtherProperty()}")
private String injectedBeanProp
答案 2 :(得分:2)
您可以使用@PropertySource
@Configuration
@PropertySource(name = "someName", value = {"classpath:a.properties", "classpath:b.properties"})
public class MyConfiguration {
}
答案 3 :(得分:1)
XMl文件
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-4.0.xsd">
<context:component-scan base-package="com.sha.home" />
<mvc:annotation-driven/>
<util:properties id="dbProp" location="classpath:db.properties" />
<!-- <context:property-placeholder location="classpath:db.properties"/> -->
</beans>
在java文件中 @value( “#{DBPROP}”) 私有属性dbProperties;
的System.out.println( “urllll” + dbProperties.getProperty( “jdbc.url”));
答案 4 :(得分:0)
大部分时间我将所有属性封装到一个实用程序中并在我的应用程序中使用。这样,您就不必担心/管理应用层中的每个属性文件。自动装配的setProps(...)将您加载的所有 util:properties 读入道具列表。
import java.util.List;
import java.util.Properties;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class AppProperiesProcessor {
private List<Properties> props;
private Properties mergedProperties;
@Autowired
public final void setProps(List<Properties> props) {
this.props = props;
}
public String getProp(final String keyVal) {
if (null == this.mergedProperties) {
this.mergedProperties = new Properties();
for (Properties prop : this.props) {
this.mergedProperties.putAll(prop);
}
}
return mergedProperties.getProperty(keyVal);
}
}