30
30
import java .util .List ;
31
31
import java .util .concurrent .TimeUnit ;
32
32
33
- import static apijson .framework .APIJSONConstant .PRIVACY_ ;
34
- import static apijson .framework .APIJSONConstant .USER_ ;
33
+ import static apijson .framework .javax . APIJSONConstant .PRIVACY_ ;
34
+ import static apijson .framework .javax . APIJSONConstant .USER_ ;
35
35
36
36
37
37
/**
@@ -46,8 +46,13 @@ public class DemoSQLExecutor extends APIJSONSQLExecutor<Long> {
46
46
// Redis 缓存 <<<<<<<<<<<<<<<<<<<<<<<
47
47
public static final RedisTemplate <String , String > REDIS_TEMPLATE ;
48
48
static {
49
+ RedisStandaloneConfiguration config = new RedisStandaloneConfiguration ("127.0.0.1" , 6379 ); // TODO 改成你自己的
50
+ // 如果需要账号及密码则按以下方式设置
51
+ // config.setUsername("root"); // TODO 改成你自己的
52
+ // config.setPassword("apijson"); // TODO 改成你自己的
53
+
49
54
REDIS_TEMPLATE = new RedisTemplate <>();
50
- REDIS_TEMPLATE .setConnectionFactory (new JedisConnectionFactory (new RedisStandaloneConfiguration ( "127.0.0.1" , 6379 ) ));
55
+ REDIS_TEMPLATE .setConnectionFactory (new JedisConnectionFactory (config ));
51
56
REDIS_TEMPLATE .setKeySerializer (new StringRedisSerializer ());
52
57
REDIS_TEMPLATE .setHashValueSerializer (new GenericToStringSerializer <>(Serializable .class ));
53
58
REDIS_TEMPLATE .setValueSerializer (new GenericToStringSerializer <>(Serializable .class ));
@@ -57,7 +62,7 @@ public class DemoSQLExecutor extends APIJSONSQLExecutor<Long> {
57
62
58
63
// 可重写以下方法,支持 Redis 等单机全局缓存或分布式缓存
59
64
@ Override
60
- public List <JSONObject > getCache (String sql , SQLConfig config ) {
65
+ public List <JSONObject > getCache (String sql , SQLConfig < Long > config ) {
61
66
List <JSONObject > list = super .getCache (sql , config );
62
67
if (list == null ) {
63
68
list = JSON .parseArray (REDIS_TEMPLATE .opsForValue ().get (sql ), JSONObject .class );
@@ -66,7 +71,7 @@ public List<JSONObject> getCache(String sql, SQLConfig config) {
66
71
}
67
72
68
73
@ Override
69
- public synchronized void putCache (String sql , List <JSONObject > list , SQLConfig config ) {
74
+ public synchronized void putCache (String sql , List <JSONObject > list , SQLConfig < Long > config ) {
70
75
super .putCache (sql , list , config );
71
76
72
77
String table = config != null && config .isMain () ? config .getTable () : null ;
@@ -80,7 +85,7 @@ public synchronized void putCache(String sql, List<JSONObject> list, SQLConfig c
80
85
}
81
86
82
87
@ Override
83
- public synchronized void removeCache (String sql , SQLConfig config ) {
88
+ public synchronized void removeCache (String sql , SQLConfig < Long > config ) {
84
89
super .removeCache (sql , config );
85
90
if (config .getMethod () == RequestMethod .DELETE ) { // 避免缓存击穿
86
91
REDIS_TEMPLATE .expire (sql , 60 , TimeUnit .SECONDS );
0 commit comments