Hay varias formas de lograr lo mismo. A continuación se presentan algunas formas comúnmente utilizadas en primavera.
Uso de PropertyPlaceholderConfigurer
Usando PropertySource
Usando ResourceBundleMessageSource
Usando PropertiesFactoryBean
y muchos más........................
Asumir ds.type
es clave en su archivo de propiedades.
Utilizando PropertyPlaceholderConfigurer
Registrarse PropertyPlaceholderConfigurer
bean-
<context:property-placeholder location="classpath:path/filename.properties"/>
o
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath:path/filename.properties" ></property>
</bean>
o
@Configuration
public class SampleConfig {
@Bean
public static PropertySourcesPlaceholderConfigurer placeHolderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();
//set locations as well.
}
}
Después de registrarse PropertySourcesPlaceholderConfigurer
, puede acceder al valor
@Value("${ds.type}")private String attr;
Utilizando PropertySource
En la última versión de primavera que no es necesario registrar PropertyPlaceHolderConfigurer
con @PropertySource
, me encontré con un buen enlace para entender versión compatibility-
@PropertySource("classpath:path/filename.properties")
@Component
public class BeanTester {
@Autowired Environment environment;
public void execute() {
String attr = this.environment.getProperty("ds.type");
}
}
Utilizando ResourceBundleMessageSource
Registrarse Bean-
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>classpath:path/filename.properties</value>
</list>
</property>
</bean>
Valor de acceso
((ApplicationContext)context).getMessage("ds.type", null, null);
o
@Component
public class BeanTester {
@Autowired MessageSource messageSource;
public void execute() {
String attr = this.messageSource.getMessage("ds.type", null, null);
}
}
Utilizando PropertiesFactoryBean
Registrarse Bean-
<bean id="properties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:path/filename.properties</value>
</list>
</property>
</bean>
Instale las propiedades de Wire en su clase
@Component
public class BeanTester {
@Autowired Properties properties;
public void execute() {
String attr = properties.getProperty("ds.type");
}
}