spring3中新增的@value注解

        在spring 3.0中,可以通过使用@value,对一些如xxx.properties文件中的文件,进行键值对的注入,例子如下:
1.首先在applicationContext.xml中加入: 
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xsi:schemaLocation="http://www.springframework.org/schema/beans 
		 http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
 的命名空间,然后
2.
<bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
    <property name="locations">  
        <list>  
            <value>classpath:test.properties</value>  
        </list>              
    </property>                              
</bean>

3.创建test.properties
   abc=123

4.
import org.springframework.beans.factory.annotation.Value;   
import org.springframework.stereotype.Controller;   
import org.springframework.web.bind.annotation.RequestMapping;   
  
@RequestMapping("/admin/images")   
@Controller   
public class ImageAdminController {   
  
    private String imageDir;   
    
    @Value("${abc}") 
    public void setImageDir(String val) {   
        this.imageDir = val;   
    }
}
        这样就将test.abc的值注入了imageDir中了。
 

你可能感兴趣的:(java,spring,@Value)