PropertySource的配置

PropertySource的配置.

Spring3.1引入了一种方法, 即使用下面这两个注解, @PropertySource和@Value, 可以用很简单的方式注意一个bean的属性. 

1 @PropertySource("classpath:netty-server.properties")
2 ...
3 ...
4 @Value("${boss.thread.count}")
5 private int bossCount;


你可能感兴趣的:(spring,PropertySource)