zjh
2023-12-18 d4b226bc63f56b7039deea20c0e1e120eb302e19
ltkj-admin/src/test/java/zjhTest.java
@@ -1,19 +1,29 @@
import cn.hutool.core.date.DateTime;
import cn.hutool.core.date.DateUtil;
import com.ltkj.LtkjApplication;
import com.ltkj.common.core.redis.RedisCache;
import com.ltkj.common.utils.SecurityUtils;
import com.ltkj.hosp.domain.DictHosp;
import com.ltkj.hosp.service.*;
import lombok.extern.slf4j.Slf4j;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
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;
/**
@@ -25,49 +35,59 @@
@Slf4j
@EnableAutoConfiguration(exclude = {DataSourceAutoConfiguration.class})
public class zjhTest {
    @Autowired
    private ITjGroupingProService groupingProService;
    @Autowired
    private ITjProjectService projectService;
    @Resource
    private ITjOrderService tjOrderService;
    @Resource
    private ITjOrderDetailService tjOrderDetailService;
    @Resource
    private ITjOrderRemarkService remarkService;
//
//    @Autowired
//    private ITjGroupingProService groupingProService;
//    @Autowired
//    private ITjProjectService projectService;
//
//    @Resource
//    private ITjOrderService tjOrderService;
//    @Resource
//    private ITjOrderDetailService tjOrderDetailService;
//    @Resource
//    private ITjOrderRemarkService remarkService;
//
    @Resource
    private RedisCache redisCache;
//
    @Autowired
    public RedisTemplate<String,String> redisTemplate;
    @Resource
    private StringRedisTemplate stringRedisTemplate;
    public RedisTemplate<Object,Object> redisTemplate;
//    @Resource
//    private StringRedisTemplate stringRedisTemplate;
@Resource
private IDictHospService dictHospService;
    @Value("${token.secret_key}")
    private String secret;
    @Test
    public void test() {
//        util.setDataBase(1);
//        stringRedisTemplate.opsForValue().set("1","1");
//        ExecutorService pool = Executors.newFixedThreadPool(5);
//
//        for (int i = 1; i < 6; i++) {
//            int finalI = i;
//            pool.execute(new Runnable() {
//                @Override
//                public void run() {
//                    try {
//                        redisCache.setDataBase(finalI);
//                        redisCache.setCacheObject("测试",finalI+"111111111111111111");
//                    } catch (Exception e) {
//                        e.printStackTrace();
//                    }
//                    pool.shutdown();
//                }
//            });
//        List<DictHosp> list = dictHospService.list();
//        for (DictHosp dictHosp : list) {
//        DateTime dateTime1 = DateUtil.offsetMonth(new Date(),6);
//        String mallMerchantSecretKey = SecurityUtils.getMallMerchantSecretKey(secret,dictHosp.getHospAreaId(),dictHosp.getHospAreaName(),dictHosp.getExpirationTime());
//            dictHosp.setSecretKey(mallMerchantSecretKey);
//            dictHosp.setExpirationTime(DateUtil.offsetDay(new Date(),30));
//            dictHospService.updateById(dictHosp);
//        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);
//            }
//        }
        log.info("嘿嘿!!!");
//        System.out.println(list);
//        System.out.println(redisCache.getMultiCacheMapValue("check",null));
//        }
    }