Есть разные способы добиться того же. Ниже приведены некоторые часто используемые способы весной:
Использование 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");
}
}