文件名称:Spring 3.x 中文开发手册.pdf
文件大小:2.69MB
文件格式:PDF
更新时间:2016-01-03 09:49:59
Spring Spring3 中文手册
Spring 3.x 新特性全部介绍
http://static.springsource.org/spring/docs/3.1.0.RELEASE/spring-framework-reference/html/new-in-3.1.html
1、基于annotation的cache服务,这个非常好
这个最早源于spring2.x时代的spring-modules项目中的cache子项目
我自己也曾经仿造者,并且基于aspectj山寨过过aop annotation cache
在大部分简单的cache场景都是非常好用的
少部分需要精确evict key的场景还不适合
具体可以参考
http://static.springsource.org/spring/docs/3.1.0.RELEASE/spring-framework-reference/html/cache.html
2、基于annotation的配置管理
简单地说,就是 @Profile("production") @Profile("dev")
3、基于annotation的环境变量管理
结合2使用
btw:绿色党肯定要对此表示不慢了
4、属性抽象层
结合2,3使用,可以在很多配置处,写出比如这样的表达式
以减少不同环境下,配置文件切换的需要