Існують різні способи досягнення того ж. Нижче наведено деякі часто використовувані способи навесні-
Використання 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
, я знайшов гарну посилання , щоб зрозуміти версію compatibility-
@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>
Екземпляр проводних властивостей у ваш клас-
@Component
public class BeanTester {
@Autowired Properties properties;
public void execute() {
String attr = properties.getProperty("ds.type");
}
}