redis 增删改 Cacheable CachePut
pom文件
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency>
java 代码 cache 实现
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.cache.annotation.CacheConfig; import org.springframework.cache.annotation.CacheEvict; import org.springframework.cache.annotation.CachePut; import org.springframework.cache.annotation.Cacheable; import org.springframework.http.MediaType; import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.*; import javax.validation.Valid; import java.util.ArrayList; import java.util.HashMap; import java.util.List; @RestController @RequestMapping("/kapplications") @CacheConfig(cacheNames = "kapplications") public class KapplicationController { @Autowired private KapplicationService kapplicationService; @RequestMapping(value = "/id/{id}", method = RequestMethod.GET) @Cacheable(key = "#id") public ResultVO<Kapplication> GetByID(@PathVariable("id")String id) { List<Kapplication> list= kapplicationService.getByID(id); List<KapplicationVO> listVO = new ArrayList<>(); for (Kapplication kp:list ) { listVO.add(new KapplicationVO(kp)); } return ResultVOUtil.success(listVO); } @PutMapping @CachePut(key ="#kapplication.applicationid") public ResultVO kapplicationupdate(@Valid @RequestBody Kapplication kapplication) { Integer ka = kapplicationService.kapplicationupdate(kapplication); return ResultVOUtil.success(ka); } @DeleteMapping @CacheEvict(key = "#kapplicaton.applicationid") public ResultVO<Kapplication> Delete(@Valid @RequestBody String applicationid){ kapplicationService.delete(applicationid); return ResultVOUtil.success(null); } }注意导入包
mport org.springframework.cache.annotation.Cacheable;
@CacheEvict(value="users ", allEntries=true)yml配置文件
spring: redis: host: 10.99.20.80 database: 2 port: 6379 password: root timeout: 0
redisDefaultExpiration: 6000当空时不返回 unless解释
@Cacheable(key = "''+#id", unless="#result == null")
/** * Spring Expression Language (SpEL) attribute used to veto method caching. * <p>Unlike {@link #condition()}, this expression is evaluated after the method * has been called and can therefore refer to the {@code result}. Default is "", * meaning that caching is never vetoed. * @since 3.2 */
注意:
Field or property 'test' cannot be found on object of type
type 'org.springframework.cache.interceptor.CacheExpressionRootObject'
解决方法 引号
@Cacheable(key = "'rrrr'")
Cache注解详解
@CacheConfig
:主要用于配置该类中会用到的一些共用的缓存配置。在这里@CacheConfig(cacheNames = "users")
:配置了该数据访问对象中返回的内容将存储于名为users的缓存对象中,我们也可以不使用该注解,直接通过@Cacheable
自己配置缓存集的名字来定义。@Cacheable
:配置了findByName函数的返回值将被加入缓存。同时在查询时,会先从缓存中获取,若不存在才再发起对数据库的访问。该注解主要有下面几个参数:value
、cacheNames
:两个等同的参数(cacheNames
为Spring 4新增,作为value
的别名),用于指定缓存存储的集合名。由于Spring 4中新增了@CacheConfig
,因此在Spring 3中原本必须有的value
属性,也成为非必需项了key
:缓存对象存储在Map集合中的key值,非必需,缺省按照函数的所有参数组合作为key值,若自己配置需使用SpEL表达式,比如:@Cacheable(key = "#p0")
:使用函数第一个参数作为缓存的key值,更多关于SpEL表达式的详细内容可参考官方文档condition
:缓存对象的条件,非必需,也需使用SpEL表达式,只有满足表达式条件的内容才会被缓存,比如:@Cacheable(key = "#p0", condition = "#p0.length() < 3")
,表示只有当第一个参数的长度小于3的时候才会被缓存unless
:另外一个缓存条件参数,非必需,需使用SpEL表达式。它不同于condition
参数的地方在于它的判断时机,该条件是在函数被调用之后才做判断的,所以它可以通过对result进行判断。keyGenerator
:用于指定key生成器,非必需。若需要指定一个自定义的key生成器,我们需要去实现org.springframework.cache.interceptor.KeyGenerator
接口,并使用该参数来指定。需要注意的是:该参数与key
是互斥的cacheManager
:用于指定使用哪个缓存管理器,非必需。只有当有多个时才需要使用cacheResolver
:用于指定使用那个缓存解析器,非必需。需通过org.springframework.cache.interceptor.CacheResolver
接口来实现自己的缓存解析器,并用该参数指定。
除了这里用到的两个注解之外,还有下面几个核心注解:
@CachePut
:配置于函数上,能够根据参数定义条件来进行缓存,它与@Cacheable
不同的是,它每次都会真是调用函数,所以主要用于数据新增和修改操作上。它的参数与@Cacheable
类似,具体功能可参考上面对@Cacheable
参数的解析@CacheEvict
:配置于函数上,通常用在删除方法上,用来从缓存中移除相应数据。除了同@Cacheable
一样的参数之外,它还有下面两个参数:allEntries
:非必需,默认为false。当为true时,会移除所有数据beforeInvocation
:非必需,默认为false,会在调用方法之后移除数据。当为true时,会在调用方法之前移除数据。