Spring RedisTemplate操作-全注解操作

package com.panku.web.redis;
import java.util.HashMap;
import java.util.Map;
import org.springframework.cache.annotation.CacheConfig;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;
import com.panku.web.entity.User;
/**
 * Spring RedisTemplate操作-全注解操作
 * @author ccx
 *
 */
@Service
@CacheConfig(cacheNames="user")
public class RedisTemplateAnnotation {
    public Map map = new HashMap();
    
    public void insert(User user){
        map.put(user.getId(), user);
    }
    
    @Cacheable(key = "'id_'+#id")
    public User get(String id){
        System.out.println("get被调用了");
        return map.get(id);
    }
    
    @CacheEvict(key = "'id_'+#id")
    public User del(String id){
        return map.remove(id);
    }
    
    @CacheEvict(allEntries=true)
    public void delAll(){
        
    }
    
    public Map getMap() {
        return map;
    }

    public void setMap(Map map) {
        this.map = map;
    }
}

你可能感兴趣的:(Spring RedisTemplate操作-全注解操作)