zjh
2023-12-18 d4b226bc63f56b7039deea20c0e1e120eb302e19
ltkj-admin/src/test/java/zjhTest.java
@@ -14,11 +14,14 @@
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.data.redis.core.Cursor;
import org.springframework.data.redis.core.RedisTemplate;
import org.springframework.data.redis.core.ScanOptions;
import org.springframework.data.redis.core.StringRedisTemplate;
import org.springframework.test.context.junit4.SpringRunner;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@@ -45,11 +48,11 @@
//    @Resource
//    private ITjOrderRemarkService remarkService;
//
//    @Resource
//    private RedisCache redisCache;
    @Resource
    private RedisCache redisCache;
//
//    @Autowired
//    public RedisTemplate<String,String> redisTemplate;
    @Autowired
    public RedisTemplate<Object,Object> redisTemplate;
//    @Resource
//    private StringRedisTemplate stringRedisTemplate;
@Resource
@@ -68,6 +71,22 @@
//        System.out.println(dateTime1);
//        System.out.println("=================================================");
//        System.out.println(mallMerchantSecretKey);
//        List<Object> list=new ArrayList<>();
//        ScanOptions options = ScanOptions.scanOptions().match("cS*").build();
//        try (Cursor<byte[]> cursor = redisTemplate.executeWithStickyConnection(redisConnection -> {
//            return redisConnection.scan(options);
//        })) {
//            while (cursor.hasNext()) {
//                byte[] keyBytes = cursor.next();
//                String key = new String(keyBytes);
//                // 处理匹配的key
//                List<Object> multiCacheMapValue = redisCache.getMultiCacheMapValue(key, null);
//                list.add(multiCacheMapValue);
//            }
//        }
//        System.out.println(list);
//        System.out.println(redisCache.getMultiCacheMapValue("check",null));
//        }
    }