spring获取properties信息

class前面注解:

@Configuration  
@PropertySources({  
    @PropertySource("classpath:config.properties"),  
    @PropertySource("classpath:database.properties")  
})  
spring推荐使用env来获取:

@Autowired  
    private Environment env;  


你可能感兴趣的:(spring获取properties信息)