同じことを達成するためのさまざまな方法があります。以下は、春によく使われる方法です。
PropertyPlaceholderConfigurerの使用
PropertySourceの使用
ResourceBundleMessageSourceの使用
PropertiesFactoryBeanの使用
などなど........................
仮定ds.type
は、プロパティファイルのキーです。
使用する PropertyPlaceholderConfigurer
PropertyPlaceholderConfigurer
Beanを登録する
<context:property-placeholder location="classpath:path/filename.properties"/>
または
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath:path/filename.properties" ></property>
</bean>
または
@Configuration
public class SampleConfig {
@Bean
public static PropertySourcesPlaceholderConfigurer placeHolderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();
//set locations as well.
}
}
登録後PropertySourcesPlaceholderConfigurer
、値にアクセスできます
@Value("${ds.type}")private String attr;
使用する PropertySource
に登録PropertyPlaceHolderConfigurer
する必要のない最新の春バージョンでは@PropertySource
、バージョンの互換性を理解するための良いリンクを見つけました-
@PropertySource("classpath:path/filename.properties")
@Component
public class BeanTester {
@Autowired Environment environment;
public void execute() {
String attr = this.environment.getProperty("ds.type");
}
}
使用する ResourceBundleMessageSource
Beanを登録-
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>classpath:path/filename.properties</value>
</list>
</property>
</bean>
アクセス値-
((ApplicationContext)context).getMessage("ds.type", null, null);
または
@Component
public class BeanTester {
@Autowired MessageSource messageSource;
public void execute() {
String attr = this.messageSource.getMessage("ds.type", null, null);
}
}
使用する PropertiesFactoryBean
Beanを登録-
<bean id="properties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:path/filename.properties</value>
</list>
</property>
</bean>
クラスにWire Propertiesインスタンスを
@Component
public class BeanTester {
@Autowired Properties properties;
public void execute() {
String attr = properties.getProperty("ds.type");
}
}