fix():把saas缓存对象换成缓存列表

dev.operation
86191 2024-10-07 19:26:29 +08:00
parent f56a0e8b7f
commit 7031534557
13 changed files with 18 additions and 11 deletions

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# Spring # Spring
spring: spring:
application: application:

View File

@ -8,8 +8,6 @@ package com.muyu.cache;/**
import com.muyu.common.redis.service.RedisService; import com.muyu.common.redis.service.RedisService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.TimeUnit; import java.util.concurrent.TimeUnit;
import static cn.hutool.core.lang.ansi.AnsiEncoder.encode; import static cn.hutool.core.lang.ansi.AnsiEncoder.encode;

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# Spring # Spring
spring: spring:

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all # SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all
# Spring # Spring
spring: spring:

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# Spring # Spring
spring: spring:

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all # SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all
# Spring # Spring
spring: spring:

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all # SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all
# Spring # Spring
spring: spring:

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# Spring # Spring
spring: spring:

View File

@ -1,4 +1,5 @@
com.muyu.cache.CarTypeCacheService com.muyu.cache.CarTypeCacheService
com.muyu.cache.CarVinCacheService
com.muyu.cache.DataTypeCacheService com.muyu.cache.DataTypeCacheService
com.muyu.cache.ElectronicFenceCacheService com.muyu.cache.ElectronicFenceCacheService
com.muyu.cache.ElectronicFenceGroupCacheService com.muyu.cache.ElectronicFenceGroupCacheService

View File

@ -3,6 +3,7 @@ package com.muyu.server.service.impl;
import com.baomidou.dynamic.datasource.annotation.DS; import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.cache.CarVinCacheService;
import com.muyu.cache.SysCarCacheService; import com.muyu.cache.SysCarCacheService;
import com.muyu.common.domain.SysCar; import com.muyu.common.domain.SysCar;
import com.muyu.common.domain.req.SysCarReq; import com.muyu.common.domain.req.SysCarReq;
@ -25,11 +26,17 @@ public class SysCarServiceImpl extends ServiceImpl<SysCarMapper, SysCar> impleme
@Autowired @Autowired
private SysCarCacheService sysCarCacheService; private SysCarCacheService sysCarCacheService;
@Autowired
private CarVinCacheService carVinCacheService;
@Override @Override
public List<SysCarVo> selectSysCarVoList(SysCarReq sysCarReq) { public List<SysCarVo> selectSysCarVoList(SysCarReq sysCarReq) {
List<SysCarVo> sysCarVos = sysCarMapper.selectSysCarVoList(sysCarReq); List<SysCarVo> sysCarVos = sysCarMapper.selectSysCarVoList(sysCarReq);
sysCarCacheService.put("List", sysCarVos); sysCarCacheService.put("List", sysCarVos);
sysCarVos.forEach(sysCarVo -> carVinCacheService.put(sysCarVo.getCarVin(), sysCarVo));
return sysCarVos; return sysCarVos;
} }

View File

@ -3,6 +3,7 @@ package com.muyu.server.service.impl;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson2.JSON; import com.alibaba.fastjson2.JSON;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.muyu.cache.CarVinCacheService;
import com.muyu.cache.SysCarCacheService; import com.muyu.cache.SysCarCacheService;
import com.muyu.common.domain.MessageTemplateType; import com.muyu.common.domain.MessageTemplateType;
import com.muyu.common.domain.SysCar; import com.muyu.common.domain.SysCar;

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all # SPRING_AMQP_DESERIALIZATION_TRUST_ALL=true spring.amqp.deserialization.trust.all
# Spring # Spring
spring: spring:

View File

@ -7,7 +7,7 @@ nacos:
addr: 47.101.53.251:8848 addr: 47.101.53.251:8848
user-name: nacos user-name: nacos
password: nacos password: nacos
namespace: yzl namespace: lgy
# Spring # Spring
spring: spring: