spring中读取配置属性的方法 博客分类: spring spring
程序员文章站
2024-03-25 16:20:10
...
1、PropertyPlaceholderConfigurer
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> <value>xxx.properties</value> </list> </property> </bean> location="classpath:test.properties" <value>classpath:xxx.properties</value> 读取时 value="${name}" xxx.properties详情 name=aaaaa age=12 在类中读取properties文件属性 在类中需要注入的属性实现 setter 和 getter 方法。 在 setter 方法前,添加 @Value 注解 @Value("#{propertiesReader[propertiesName]}") propertiesName 为 properties 文件中的键。这样,在容器启动过程中, Spring 将自动注入值。
推荐阅读
-
spring中读取配置属性的方法 博客分类: spring spring
-
Spring AOP 中 advice 的四种类型 before after throwing advice around 博客分类: Spring框架
-
Spring中多配置文件以及寻找引用其他bean的方式 博客分类: Spring springbeanxmlref读取配置文件
-
解决Spring定时计划任务重复执行两次(实例被构造两次)问题的方法 博客分类: JavaSpring spring框架
-
spring3 jar 读取外部属性文件的配置方法 博客分类: spring
-
Spring-Test:详解Spring中的Profile 博客分类: Spring-Test Spring-TestProfile
-
使用spring的annotation配置项目 博客分类: springannotation springannotation
-
spring aop的annotation配置 博客分类: springaopannotation springaopannotation
-
Spring指定Bean的初始化方法和销毁方法 博客分类: Spring
-
SpringMVC中JSP取不到ModelAndView的数据的原因 博客分类: java Java spring springMVC