RedisServiceImpl.java 431 Bytes
package com.huaheng.common.redis.serviceimpl;

import com.huaheng.common.redis.model.RedisModel;
import com.huaheng.common.redis.service.IRedisService;
import org.springframework.stereotype.Service;

@Service
public class RedisServiceImpl extends IRedisService<RedisModel> {

    private static final String REDIS_KEY = "TEST_REDIS_KEY";

    @Override
    protected String getRedisKey() {


        return this.REDIS_KEY;
    }
}