直接在 spring 配置文件里面加上

或者

    
        
            
jdbc.properties
        
    

这样就能在配置数据源的时候这样子

        
        
        
        
        
        
        
        
        
        
        
        
    

同时也可以在代码里面这样获取

@Value("${jdbc.driver}") String jdbcdriver;

当然如果用 @Value 注解获取属性的话,你的类也必须是spring注入管理的。 

如果用了SpringMVC,而且你在controller里面用 @Value 获取不到属性值的话,应该在SpringMVC配置文件里面也加上上面的配置!

因为在使用spring mvc时,实际上是两个spring容器: 

1,dispatcher-servlet.xml 是一个,我们的controller就在这里,所以这个里面也需要注入属性文件 
org.springframework.web.servlet.DispatcherServlet 
这里最终是使用

WebApplicationContext parent =WebApplicationContextUtils.getWebApplicationContext(getServletContext());

创建spring容器,代码在FrameworkServlet中

2,applicationContext.xml 是另外一个,也需要注入属性文件 

org.springframework.web.context.ContextLoaderListener

在我们的service中可以拿到@Value注入的值,那是因为我们通常都会把获取属性文件定义在applicationContext.xml中,这样在 Controller中是取不到的,必须在dispatcher-servlet.xml 中把获取属性文件再定义一下