Name Last Update
src/main/java/com/irrigation/icl Loading commit data...
.gitignore Loading commit data...
README.md Loading commit data...
pom.xml Loading commit data...

README.md

sass-common-lib:公共项目库

v 1.2.0版本更新记录

  • 利用redis和ehcache增加了缓存支持,redis为L2级缓存,ehcache为L1级cache; > application.yml基本配置如下: json #开启ehcache和redis两级缓存 springext: cache: enable: true cacheL1: enable: true topic: cache #同步L1缓存的topic key: "keys" json #redis配置 spring: redis: database: 10 host: 192.168.2.252 port: 6379 # password: zhnf@123 pool: max-wait: 1

v1.2.1

  • 增加了KeyGenerator实现类,实现类中使用className.methodName:params拼接成key

v1.2.2

  • 增加了对@CacheEvict(allEntries = true)的支持