Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

34.6. @Caching

    	
    @Caching(
	    cacheable = {
	            @Cacheable(value = "emp",key = "#p0"),
	            ...
	    },
	    put = {
	            @CachePut(value = "emp",key = "#p0"),
	            ...
	    },
	    evict = {
	            @CacheEvict(value = "emp",key = "#p0"),
	            ....
	    }
    )
    public User save(User user) {
        ....
    }