Jest wiele sposobów na osiągnięcie tego samego. Poniżej znajduje się kilka powszechnie używanych sposobów na wiosnę:
Korzystanie z PropertyPlaceholderConfigurer
Korzystanie z PropertySource
Korzystanie z ResourceBundleMessageSource
Korzystanie z PropertiesFactoryBean
i wiele więcej........................
Zakładając, że ds.type
jest to kluczowe w pliku nieruchomości.
Za pomocą PropertyPlaceholderConfigurer
Zarejestruj PropertyPlaceholderConfigurer
fasolę-
<context:property-placeholder location="classpath:path/filename.properties"/>
lub
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations" value="classpath:path/filename.properties" ></property>
</bean>
lub
@Configuration
public class SampleConfig {
@Bean
public static PropertySourcesPlaceholderConfigurer placeHolderConfigurer() {
return new PropertySourcesPlaceholderConfigurer();
}
}
Po rejestracji PropertySourcesPlaceholderConfigurer
możesz uzyskać dostęp do wartości-
@Value("${ds.type}")private String attr;
Za pomocą PropertySource
W najnowszej wersji wiosennej nie trzeba zarejestrować PropertyPlaceHolderConfigurer
się @PropertySource
, znalazłem dobrą odnośnik do zrozumienia wersji compatibility-
@PropertySource("classpath:path/filename.properties")
@Component
public class BeanTester {
@Autowired Environment environment;
public void execute() {
String attr = this.environment.getProperty("ds.type");
}
}
Za pomocą ResourceBundleMessageSource
Zarejestruj Bean-
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basenames">
<list>
<value>classpath:path/filename.properties</value>
</list>
</property>
</bean>
Wartość dostępu
((ApplicationContext)context).getMessage("ds.type", null, null);
lub
@Component
public class BeanTester {
@Autowired MessageSource messageSource;
public void execute() {
String attr = this.messageSource.getMessage("ds.type", null, null);
}
}
Za pomocą PropertiesFactoryBean
Zarejestruj Bean-
<bean id="properties"
class="org.springframework.beans.factory.config.PropertiesFactoryBean">
<property name="locations">
<list>
<value>classpath:path/filename.properties</value>
</list>
</property>
</bean>
Podłącz instancję Properties do swojej klasy
@Component
public class BeanTester {
@Autowired Properties properties;
public void execute() {
String attr = properties.getProperty("ds.type");
}
}