PropertySource的配置.
Spring3.1引入了一种方法, 即使用下面这两个注解, @PropertySource和@Value, 可以用很简单的方式注意一个bean的属性.
1 | @PropertySource ( "classpath:netty-server.properties" ) |
2 | ... |
3 | ... |
4 | @Value ( "${boss.thread.count}" ) |
5 | private int bossCount; |
原文地址:http://1129254.blog.51cto.com/1119254/1665256