CxNdmO`sn`9DgJ4BEPjcSx5y_wV98
z{;+t`l6%^cd)AVBzAZ<)Q%!xe?&+fso<4fAt&haR`er|2qzFl&j~M
z80mcJ=r?2;^m?nTCh36uJHCY}(sm0sI6g-9dkk%1{>76Mvh0M5s{GXk^r0L5T$x<^
Na1R@tWkHsKzX1D^VLku=
literal 0
HcmV?d00001
diff --git a/boot-valuation/boot-valuation-remote/pom.xml b/boot-valuation/boot-valuation-remote/pom.xml
new file mode 100644
index 0000000..7934c76
--- /dev/null
+++ b/boot-valuation/boot-valuation-remote/pom.xml
@@ -0,0 +1,28 @@
+
+
+ 4.0.0
+
+ com.boot
+ boot-valuation
+ 3.6.3
+
+
+ boot-valuation-remote
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+ com.boot
+ boot-valuation-common
+ 3.6.3
+
+
+
+
diff --git a/boot-valuation/boot-valuation-remote/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports b/boot-valuation/boot-valuation-remote/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/boot-valuation/boot-valuation-remote/src/main/resources/META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports
@@ -0,0 +1 @@
+
diff --git a/boot-valuation/boot-valuation-server/pom.xml b/boot-valuation/boot-valuation-server/pom.xml
new file mode 100644
index 0000000..51d0f72
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/pom.xml
@@ -0,0 +1,114 @@
+
+
+ 4.0.0
+
+ com.boot
+ boot-valuation
+ 3.6.3
+
+
+ boot-valuation-server
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-discovery
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-nacos-config
+
+
+
+
+ com.alibaba.cloud
+ spring-cloud-starter-alibaba-sentinel
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-actuator
+
+
+
+
+ io.springfox
+ springfox-swagger-ui
+ ${swagger.fox.version}
+
+
+
+
+ com.mysql
+ mysql-connector-j
+
+
+
+
+ com.boot
+ boot-common-datasource
+
+
+
+
+ com.boot
+ boot-common-datascope
+
+
+
+
+ com.boot
+ boot-common-log
+
+
+
+
+ com.boot
+ boot-common-swagger
+
+
+
+
+ com.boot
+ boot-valuation-common
+ 3.6.3
+
+
+
+ com.boot
+ boot-file-remote
+
+
+
+
+
+ ${project.artifactId}
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+ repackage
+
+
+
+
+
+
+
+
diff --git a/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/BootValuationApplication.java b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/BootValuationApplication.java
new file mode 100644
index 0000000..cf417e2
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/BootValuationApplication.java
@@ -0,0 +1,33 @@
+package com.boot.valuation;
+
+import com.boot.common.security.annotation.EnableCustomConfig;
+import com.boot.common.security.annotation.EnableRyFeignClients;
+import com.boot.common.swagger.annotation.EnableCustomSwagger2;
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+/**
+ * @ClassName BootValuationApplication
+ * @Description
+ * @Author
+ * @Date 2024/2/26 19:40
+ */
+@SpringBootApplication
+@EnableCustomConfig
+@EnableCustomSwagger2
+@EnableRyFeignClients
+public class BootValuationApplication {
+ public static void main(String[] args) {
+ SpringApplication.run(BootValuationApplication.class, args);
+ System.out.println("(♥◠‿◠)ノ゙ 计价模块启动成功 ლ(´ڡ`ლ)゙ \n" +
+ " .-------. ____ __ \n" +
+ " | _ _ \\ \\ \\ / / \n" +
+ " | ( ' ) | \\ _. / ' \n" +
+ " |(_ o _) / _( )_ .' \n" +
+ " | (_,_).' __ ___(_ o _)' \n" +
+ " | |\\ \\ | || |(_,_)' \n" +
+ " | | \\ `' /| `-' / \n" +
+ " | | \\ / \\ / \n" +
+ " ''-' `'-' `-..-' ");
+ }
+}
diff --git a/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/controller/ValuationController.java b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/controller/ValuationController.java
new file mode 100644
index 0000000..a3afa0c
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/controller/ValuationController.java
@@ -0,0 +1,33 @@
+package com.boot.valuation.controller;
+
+/**
+ * @ClassName ValuationController
+ * @Description
+ * @Author
+ * @Date 2024/2/26 19:39
+ */
+
+import com.boot.valuation.common.domain.vo.DataVo;
+import com.boot.valuation.service.ValuationService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.*;
+
+import java.math.BigDecimal;
+
+/**
+ * 计价接口
+ * */
+@RestController
+@RequestMapping("/valuation")
+public class ValuationController {
+ @Autowired
+ private ValuationService valuationService;
+
+ @PostMapping("/compute")
+ public BigDecimal computePrice(@RequestBody DataVo dataVo){
+// Double sumPrice = valuationService.computePrice(dataVo);
+// BigDecimal bigDecimal = BigDecimal.valueOf(sumPrice);
+ return valuationService.computePrice(dataVo);
+ }
+
+}
diff --git a/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/mapper/ValuationMapper.java b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/mapper/ValuationMapper.java
new file mode 100644
index 0000000..be8203d
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/mapper/ValuationMapper.java
@@ -0,0 +1,20 @@
+package com.boot.valuation.mapper;
+
+import com.boot.valuation.common.domain.Estimated;
+import com.boot.valuation.common.domain.Section;
+import com.boot.valuation.common.domain.vo.DataVo;
+import org.apache.ibatis.annotations.Mapper;
+import org.apache.ibatis.annotations.Param;
+
+/**
+ * @ClassName ValuationMapper
+ * @Description
+ * @Author
+ * @Date 2024/2/26 19:44
+ */
+@Mapper
+public interface ValuationMapper {
+ Estimated getEstimatedId(DataVo dataVo);
+
+ Section computeSectionMoney(@Param("sss") String s);
+}
diff --git a/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/service/ValuationService.java b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/service/ValuationService.java
new file mode 100644
index 0000000..9bfa41b
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/service/ValuationService.java
@@ -0,0 +1,16 @@
+package com.boot.valuation.service;
+
+import com.boot.valuation.common.domain.vo.DataVo;
+
+import java.math.BigDecimal;
+
+/**
+ * @ClassName ValuationService
+ * @Description
+ * @Author
+ * @Date 2024/2/26 19:43
+ */
+public interface ValuationService {
+
+ BigDecimal computePrice(DataVo dataVo);
+}
diff --git a/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/service/impl/ValuationServiceImpl.java b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/service/impl/ValuationServiceImpl.java
new file mode 100644
index 0000000..2faa316
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/src/main/java/com/boot/valuation/service/impl/ValuationServiceImpl.java
@@ -0,0 +1,365 @@
+package com.boot.valuation.service.impl;
+
+import com.boot.valuation.common.domain.DefineParameter;
+import com.boot.valuation.common.domain.Estimated;
+import com.boot.valuation.common.domain.NightSection;
+import com.boot.valuation.common.domain.Section;
+import com.boot.valuation.common.domain.vo.DataVo;
+import com.boot.valuation.common.utils.BigDecimalUtils;
+import com.boot.valuation.common.utils.ComputeSectionUtil;
+import com.boot.valuation.mapper.ValuationMapper;
+import com.boot.valuation.service.ValuationService;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+
+import java.math.BigDecimal;
+import java.time.LocalTime;
+import java.time.temporal.ChronoUnit;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * @ClassName ValuationServiceImpl
+ * @Description
+ * @Author
+ * @Date 2024/2/26 19:44
+ */
+@Service
+public class ValuationServiceImpl implements ValuationService {
+
+ public static ValuationMapper valuationMapper;
+
+ @Autowired
+ private void setValuationMapper(ValuationMapper valuationMapper){
+ this.valuationMapper = valuationMapper;
+ }
+
+
+
+ @Override
+ public BigDecimal computePrice(DataVo dataVo) {
+ // 定义返回参数,赋值为0
+ BigDecimal sum = BigDecimal.ZERO;
+ // 获取到夜间开始时间
+ LocalTime time = LocalTime.of(DefineParameter.START_TIME, DefineParameter.MINUTES);
+ // 获取到当前时间
+ LocalTime now = LocalTime.now();
+ // 获取到当前订单结束时间
+ LocalTime endTime = now.plusMinutes(dataVo.getTimeLong());
+ // 所属套餐id
+ Estimated estimated = valuationMapper.getEstimatedId(dataVo);
+ // 包含套餐 不包含分段计费
+ if (dataVo.getIsMeal() == DefineParameter.MEAL){ // 在套餐中
+ // 判断是否在套餐中
+ if (estimated.getKilometres()>=dataVo.getDistance() && estimated.getServerTime()>=dataVo.getTimeLong()){
+ // 判断是否在夜间服务范围内(在套餐中)
+ if (endTime.isAfter(time) || now.isAfter(time)){
+ NightSection nightSection = ComputeSectionUtil.nightSection(dataVo.getTimeLong(), dataVo.getDistance(), now);
+ // 计算在套餐中 和夜间服务费的价钱
+ sum = estimated.getMealPrice()
+ .add(computeNightServerMoney(dataVo,estimated,nightSection));
+ return sum;
+ }else { // 不在夜间服务(在套餐中)
+ return estimated.getMealPrice();
+ }
+ }else { // 不在套餐中
+ // 判断是否在夜间服务范围内(超出套餐)
+ if (endTime.isAfter(time) || now.isAfter(time)){
+ NightSection nightSection = ComputeSectionUtil.nightSection(dataVo.getTimeLong(), dataVo.getDistance(), now);
+
+ // 计算不在套餐中 和在夜间服务费的价钱
+ // 判断实际路径是否大于远途路径(有在夜间行驶)
+ if (estimated.getLongWayMileage().compareTo(dataVo.getDistance())>=0){
+ // 订单金额 = 基础价格 +( 实际里程数 - 包含公里数)* 超公里单价(注3) + (实际服务时长数 - 包含服务时长数)* 超时间单价(注3) +(实际里程数 - 远途起算公里)* 远途单价 + 夜间服务费(注2)
+ sum = estimated.getBasicsPrice()
+ .add(computeOverDistanceMoney(dataVo,estimated))
+ .add(computeOvertimeMoney(dataVo,estimated))
+ .add(computeNightServerMoney(dataVo,estimated,nightSection));
+ // 判断是否订单金额是否大于套餐单价
+ if (estimated.getMealPrice().compareTo(sum)>0){
+ return estimated.getMealPrice();
+ }else {
+ return sum;
+ }
+ }else {
+ // 订单金额 = 基础价格 +( 实际里程数 - 包含公里数)* 超公里单价(注3) + (实际服务时长数 - 包含服务时长数)* 超时间单价(注3) +(实际里程数 - 远途起算公里)* 远途单价 + 夜间服务费(注2)
+ sum = estimated.getBasicsPrice()
+ .add(computeOverDistanceMoney(dataVo,estimated))
+ .add(computeOvertimeMoney(dataVo,estimated))
+ .add(computeNightServerMoney(dataVo,estimated,nightSection))
+ .add(computeLongWayMoney(dataVo,estimated));
+ // 判断是否订单金额是否大于套餐单价
+ if (estimated.getMealPrice().compareTo(sum)>0){
+ return estimated.getMealPrice();
+ }else {
+ return sum;
+ }
+ }
+ }else { // 不在夜间服务(在套餐中)
+ // 判断实际路径是否大于远途路径(有在夜间行驶)
+ if (estimated.getLongWayMileage().compareTo(dataVo.getDistance())>=0){
+ // 订单金额 = 基础价格 +( 实际里程数 - 包含公里数)* 超公里单价(注3) + (实际服务时长数 - 包含服务时长数)* 超时间单价(注3) +(实际里程数 - 远途起算公里)* 远途单价 + 夜间服务费(注2)
+ sum = estimated.getBasicsPrice()
+ .add(computeOverDistanceMoney(dataVo,estimated))
+ .add(computeOvertimeMoney(dataVo,estimated));
+ // 判断是否订单金额是否大于套餐单价
+ if (estimated.getMealPrice().compareTo(sum)>0){
+ return estimated.getMealPrice();
+ }else {
+ return sum;
+ }
+ }else { // 不在夜间服务,不超过远途公里数
+ // 订单金额 = 基础价格 +( 实际里程数 - 包含公里数)* 超公里单价(注3) + (实际服务时长数 - 包含服务时长数)* 超时间单价(注3)
+ sum = estimated.getBasicsPrice()
+ .add(computeOverDistanceMoney(dataVo,estimated))
+ .add(computeOvertimeMoney(dataVo,estimated))
+ .add(computeLongWayMoney(dataVo,estimated));
+ // 判断是否订单金额是否大于套餐单价
+ if (estimated.getMealPrice().compareTo(sum)>0){
+ return estimated.getMealPrice();
+ }else {
+ return sum;
+ }
+ }
+ }
+ }
+ }else {// 不包含套餐 包含分段计费
+ // 订单金额 = 基础价格 + 里程费用(注4) + 时长费用(注4) +(实际里程数 - 远途起算公里)* 远途单价 + 夜间服务费(注2)
+ // 分段计费价格
+ BigDecimal sectionTotalPrice = computeSectionMoney(estimated, dataVo);
+ NightSection nightSection = ComputeSectionUtil.nightSection(dataVo.getTimeLong(), dataVo.getDistance(), now);
+
+ // 包含夜间服务费
+ if (now.isAfter(time) || endTime.isAfter(time)){
+ // 不包含计算远途价钱 (实际公里数<=远途公里数)
+ if (estimated.getLongWayMileage().compareTo(dataVo.getDistance())>=0){
+ sum = estimated.getMealPrice()
+ .add(sectionTotalPrice)
+ .add(computeNightServerMoney(dataVo,estimated,nightSection));
+
+ }else { // 包含计算远途价钱 (实际公里数>远途公里数)
+ sum = estimated.getMealPrice()
+ .add(sectionTotalPrice)
+ .add(computeNightServerMoney(dataVo,estimated,nightSection))
+ .add(computeLongWayMoney(dataVo,estimated));
+ }
+
+ }else { // 不包含夜间服务费
+ // 不包含计算远途价钱 (实际公里数<=远途公里数)
+ if (estimated.getLongWayMileage().compareTo(dataVo.getDistance()) >= 0) {
+ sum = estimated.getMealPrice()
+ .add(sectionTotalPrice);
+ } else { // 包含计算远途价钱 (实际公里数>远途公里数)
+ sum = estimated.getMealPrice()
+ .add(sectionTotalPrice)
+ .add(computeLongWayMoney(dataVo,estimated));
+ }
+ }
+
+ return sum;
+ }
+ }
+
+ /**
+ * 计算夜间服务费用
+ * @param dataVo
+ * @param estimated
+ * @param nightSection
+ * @return
+ */
+ public static BigDecimal computeNightServerMoney(DataVo dataVo, Estimated estimated, NightSection nightSection){
+ BigDecimal nightServerMoney = BigDecimal.ZERO;
+ // 夜间服务费 = 夜间行驶时间段 * 夜间加收公里单价 + 夜间行驶时间段的里程数 * 夜间加收时间单价
+ nightServerMoney = BigDecimalUtils.add(
+ BigDecimalUtils.multiply(BigDecimal.valueOf(nightSection.getNightDuration()),estimated.getNightServerTimePrice())
+ ,BigDecimalUtils.multiply(BigDecimal.valueOf(nightSection.getNightDistance()),estimated.getNightServerMileagePrice())
+ );
+ return nightServerMoney;
+ }
+
+ /**
+ * 计算(实际里程数 - 远途起算公里)* 远途单价
+ * @param dataVo
+ * @param estimated
+ * @return
+ */
+ public static BigDecimal computeLongWayMoney(DataVo dataVo, Estimated estimated){
+ BigDecimal longWayMoney = BigDecimal.ZERO;
+ // (实际里程数 - 远途起算公里)* 远途单价
+ longWayMoney = BigDecimalUtils.multiply(BigDecimalUtils.subtract(BigDecimal.valueOf(dataVo.getDistance()),BigDecimal.valueOf(estimated.getLongWayMileage())),estimated.getLongWayPrice());
+ return longWayMoney;
+ }
+
+ /**
+ * 计算(实际服务时长数 - 包含服务时长数)* 超时间单价(注3)
+ * @param dataVo
+ * @param estimated
+ * @return
+ */
+ public static BigDecimal computeOvertimeMoney(DataVo dataVo, Estimated estimated){
+ BigDecimal overtimeMoney = BigDecimal.ZERO;
+ // (实际服务时长数 - 包含服务时长数)* 超时间单价(注3)
+ overtimeMoney = BigDecimalUtils.multiply(BigDecimalUtils.subtract(BigDecimal.valueOf(dataVo.getTimeLong()),BigDecimal.valueOf(estimated.getServerTime())),estimated.getTimePrice());
+ return overtimeMoney;
+ }
+
+ /**
+ * 计算(实际里程数 - 包含公里数)* 超公里单价(注3)
+ * @param dataVo
+ * @param estimated
+ * @return
+ */
+ public static BigDecimal computeOverDistanceMoney(DataVo dataVo, Estimated estimated){
+ BigDecimal overDistanceMoney = BigDecimal.ZERO;
+ // 判断实际公里数是否大于远途计算公里数
+ if (dataVo.getDistance() > estimated.getLongWayMileage()){
+ overDistanceMoney = BigDecimalUtils.multiply(BigDecimal.valueOf(estimated.getLongWayMileage() - estimated.getKilometres()), estimated.getMileagePrice());
+ }else {
+ // ( 实际里程数 - 包含公里数)* 超公里单价(注3)
+ overDistanceMoney = BigDecimalUtils.multiply(BigDecimal.valueOf(dataVo.getDistance() - estimated.getKilometres()), estimated.getMileagePrice());
+ }
+ return overDistanceMoney;
+ }
+
+ /**
+ * 分段计费
+ * @param estimated
+ * @param dataVo
+ * @return
+ */
+ public static BigDecimal computeSectionMoney(Estimated estimated, DataVo dataVo){
+ BigDecimal sectionMoney = BigDecimal.ZERO;
+ // 定义分段集合
+ List sectionsList = new ArrayList<>();
+
+ // 根据分段id获取到响应的 分段计费
+ for (String s : estimated.getSectionId().split(",")) {
+ Section section = valuationMapper.computeSectionMoney(s);
+ sectionsList.add(section);
+ }
+ // 获取当前时间
+ LocalTime nowTime = LocalTime.now();
+ // 计算出结束时间
+ LocalTime finishTime = nowTime.plusMinutes(dataVo.getTimeLong());
+
+ for (Section section : sectionsList) {
+ sectionMoney = sectionMoney.add(sectionMoneyMonthed(dataVo,estimated,section,nowTime,finishTime));
+ }
+
+ return sectionMoney;
+ }
+
+ public static BigDecimal sectionMoneyMonthed(DataVo dataVo, Estimated estimated, Section section, LocalTime nowTime, LocalTime finishTime){
+ BigDecimal timeMoney = BigDecimal.ZERO;
+
+ if (estimated.getLongWayMileage() >= dataVo.getDistance()){
+ // 1.开始时间和结束时间是否在特殊时间段
+ if (nowTime.isAfter(LocalTime.of(section.getStartTime(),DefineParameter.MINUTES)) &&
+ finishTime.isBefore(LocalTime.of(section.getEndTime(),DefineParameter.MINUTES))){
+ // 起始时间和结束时间都在特殊时间段内的 总价
+// dataVo.getDistance() * section.getKilometrePrice() +
+// dataVo.getTimeLong() * section.getTimePrice();
+ timeMoney = BigDecimalUtils.multiply(BigDecimal.valueOf(dataVo.getDistance()),section.getKilometrePrice())
+ .add(BigDecimalUtils.multiply(BigDecimal.valueOf(dataVo.getTimeLong()),section.getTimePrice()));
+
+ }
+
+ // 2.开始时间在特殊时间段内,结束时间不在
+ if ((nowTime.isAfter(LocalTime.of(section.getStartTime(), DefineParameter.MINUTES))
+ && nowTime.isBefore(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES)))
+ && finishTime.isAfter(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES))
+ ) {
+ // 在特殊时间内行驶的时长(unit:min)
+ long until = nowTime.until(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES), ChronoUnit.MINUTES);
+ // 在特殊时间段内行驶时间的总价
+ BigDecimal timePrice = section.getTimePrice().multiply(BigDecimal.valueOf(until));
+ double v = (double) until / (double) dataVo.getTimeLong();
+ // 根据比率计算在特殊时间段内行驶的路程
+ double distance = dataVo.getDistance() * v;
+ BigDecimal distancePrice = section.getKilometrePrice().multiply(BigDecimal.valueOf(distance));
+
+ timeMoney = timePrice.add(distancePrice);
+ }
+
+ // 3.开始时间不在,结束时间在特殊时间段内
+ if (nowTime.isBefore(LocalTime.of(section.getStartTime(), DefineParameter.MINUTES))
+ && (finishTime.isAfter(LocalTime.of(section.getStartTime(), DefineParameter.MINUTES))
+ && finishTime.isBefore(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES)))
+ ){
+ // 在特殊时间内行驶的时长(unit:min)
+ long until = LocalTime.of(section.getStartTime(), DefineParameter.MINUTES).until(finishTime, ChronoUnit.MINUTES);
+ // 在特殊时间段内行驶的时间比率
+ double v = (double) dataVo.getTimeLong() / until;
+ // 根据市场比率得出 在特殊时段内行驶的路程
+ double distance = dataVo.getDistance() * v;
+
+ // 特殊时段内的时间总价
+ BigDecimal timePrice = section.getTimePrice().multiply(BigDecimal.valueOf(until));
+ // 特殊时段内的路程总价
+ BigDecimal distancePrice = section.getKilometrePrice().multiply(BigDecimal.valueOf(distance));
+
+ timeMoney = timePrice.add(distancePrice);
+
+ }
+ }else {
+ // 1.开始时间和结束时间是否在特殊时间段
+ if (nowTime.isAfter(LocalTime.of(section.getStartTime(),DefineParameter.MINUTES)) &&
+ finishTime.isBefore(LocalTime.of(section.getEndTime(),DefineParameter.MINUTES))){
+ // 起始时间和结束时间都在特殊时间段内的 总价
+ timeMoney = BigDecimalUtils.multiply(BigDecimal.valueOf(estimated.getLongWayMileage()),section.getKilometrePrice())
+ .add(BigDecimalUtils.multiply(BigDecimal.valueOf(dataVo.getTimeLong()),section.getTimePrice()))
+ .add(BigDecimalUtils.multiply(BigDecimalUtils.subtract(BigDecimal.valueOf(dataVo.getDistance()),BigDecimal.valueOf(estimated.getLongWayMileage())),estimated.getLongWayPrice()));
+
+ }
+
+ // 2.开始时间在特殊时间段内,结束时间不在
+ if ((nowTime.isAfter(LocalTime.of(section.getStartTime(), DefineParameter.MINUTES))
+ && nowTime.isBefore(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES)))
+ && finishTime.isAfter(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES))
+ ) {
+ // 在特殊时间内行驶的时长(unit:min)
+ long until = nowTime.until(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES), ChronoUnit.MINUTES);
+ // 在特殊时间段内行驶时间的总价
+ BigDecimal timePrice = section.getTimePrice().multiply(BigDecimal.valueOf(until));
+ double v = (double) until / (double) dataVo.getTimeLong();
+ // 根据比率计算在特殊时间段内行驶的路程
+ double distance = dataVo.getDistance() * v;
+ BigDecimal distancePrice = section.getKilometrePrice().multiply(BigDecimal.valueOf(distance));
+
+ timeMoney = timePrice.add(distancePrice);
+ }
+
+ // 3.开始时间不在,结束时间在特殊时间段内
+ if (nowTime.isBefore(LocalTime.of(section.getStartTime(), DefineParameter.MINUTES))
+ && (finishTime.isAfter(LocalTime.of(section.getStartTime(), DefineParameter.MINUTES))
+ && finishTime.isBefore(LocalTime.of(section.getEndTime(), DefineParameter.MINUTES)))
+ ){
+ // 在特殊时间内行驶的时长(unit:min)
+ long until = LocalTime.of(section.getStartTime(), DefineParameter.MINUTES).until(finishTime, ChronoUnit.MINUTES);
+ // 在特殊时间段内行驶的时间比率
+ double v = (double) dataVo.getTimeLong() / until;
+ // 根据市场比率得出 在特殊时段内行驶的路程
+ double distance = dataVo.getDistance() * v;
+
+ // 特殊时段内的时间总价
+ BigDecimal timePrice = section.getTimePrice().multiply(BigDecimal.valueOf(until));
+ // 特殊时段内的路程总价
+ BigDecimal distancePrice = section.getKilometrePrice().multiply(BigDecimal.valueOf(distance));
+
+ timeMoney = timePrice.add(distancePrice);
+
+ }
+ }
+
+
+
+ return timeMoney;
+ /**
+ * 1.判断开始时间和结束时间是否在特殊时间段
+ * 2.开始时间在特殊时间段内,结束时间不在
+ * 3.开始时间不在,结束时间在特殊时间段内
+ */
+
+ }
+
+}
diff --git a/boot-valuation/boot-valuation-server/src/main/resources/bootstrap.yml b/boot-valuation/boot-valuation-server/src/main/resources/bootstrap.yml
new file mode 100644
index 0000000..9ffc4c8
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/src/main/resources/bootstrap.yml
@@ -0,0 +1,27 @@
+# Tomcat
+server:
+ port: 9501
+
+# Spring
+spring:
+ application:
+ # 应用名称
+ name: boot-valuation
+ profiles:
+ # 环境配置
+ active: dev
+ cloud:
+ nacos:
+ discovery:
+ # 服务注册地址
+ server-addr: 122.152.215.207:8848
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
+ config:
+ # 配置中心地址
+ server-addr: 122.152.215.207:8848
+ # 配置文件格式
+ file-extension: yml
+ # 共享配置
+ shared-configs:
+ - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
diff --git a/boot-valuation/boot-valuation-server/src/main/resources/mapper/ValuationMapper.xml b/boot-valuation/boot-valuation-server/src/main/resources/mapper/ValuationMapper.xml
new file mode 100644
index 0000000..5b6cf4c
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/src/main/resources/mapper/ValuationMapper.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/boot-valuation/boot-valuation-server/target/classes/bootstrap.yml b/boot-valuation/boot-valuation-server/target/classes/bootstrap.yml
new file mode 100644
index 0000000..9ffc4c8
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/target/classes/bootstrap.yml
@@ -0,0 +1,27 @@
+# Tomcat
+server:
+ port: 9501
+
+# Spring
+spring:
+ application:
+ # 应用名称
+ name: boot-valuation
+ profiles:
+ # 环境配置
+ active: dev
+ cloud:
+ nacos:
+ discovery:
+ # 服务注册地址
+ server-addr: 122.152.215.207:8848
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
+ config:
+ # 配置中心地址
+ server-addr: 122.152.215.207:8848
+ # 配置文件格式
+ file-extension: yml
+ # 共享配置
+ shared-configs:
+ - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
diff --git a/boot-valuation/boot-valuation-server/target/classes/com/boot/valuation/BootValuationApplication.class b/boot-valuation/boot-valuation-server/target/classes/com/boot/valuation/BootValuationApplication.class
new file mode 100644
index 0000000000000000000000000000000000000000..f636b195d1678350cf22db3c5f90222a64143823
GIT binary patch
literal 1466
zcmb7E&1(}u6#q>>jE&LO)K;rj$Ioo~kp=OfMg$w|DX18U2ZeMK*Elu1Q+8)t3q1%P
z)SkSFf*(Byo)kr_C{*z1pWw}6i?{v<;+x&nq}U#uWZ#>4@ArQ1&F;MU_WRQUfa4gB
zqXn%ov?b7vO$=S*)}&?DEVpW2D399}#jxqLaD_U<&}yWMF>GcStVqW!OR3CBs}@*F
zNY@;pWpQwO6UbH
zL)pkTipte2-_KrcvJ{ji%ck?|F;}Fk?AyxBN%w}R2A)-}*-a_PtlilTbYXi8$ppHw
zW6et_O#8}qs1zB{tLTaH3Ta-Xq>578mXqC#UdHYji;rI}K6j`PfLG&1DZqeP=V
z2^EPrpCLQ_IKLLzw9=0m{v(9JQ#{QzG#unEWi%jFHxP?a;*yur+8T|L!P6z4S%uVz
zN<*bI*>oLLOg*T9iRziTrYoRqGdd$tQ&0mFmOMjNz7WNetGe>0Pzj*0d}4x-az
zEhLrFVMG%uBFSW;S%?iq9J|mL!|nw3U@t>=cy!i&Fou{uYpUkb7i~UVt4FEG(3X?e
zZHCUgaP9MfQ?|X!`s^?y^Ri;qik2tzx^8S!H-*nIod1u;$Wju=5>!L4vEF&sMOa>y
zXuH>OGsFur@GADG&{g$s)P5Pge}=wGfvbdL7lki$3%IUSVS5t&nRPoSY;P-2l3FNi
z9ovjLRA*{xA=<`?#QkttPmg}1%cW|JcSaaC@(y%?QOcn_J;L3QU3}g
zBm@t903U@IyJG)d2KAUoaHbH~RCK!+ZtRI%=phJo0qNU9Bx2i69YH>4!5#Qtdj{bHjL{;{)78&m6m*)$@@HDr(v2?ksBLDZsx;nP6#c)V6
z5ML>M1=PtLy_f7l7}m~;*cGW*R+=+v{ySe!en@0&ceH;@eARuO7*D=ZseH>h5A$Jq
zwST&;yncEFK6}?hk$=(orPT$O|t1W(8Oi3DF7v487t&jIx{F_#V-jgC8}+HMrG?O&N=uX)osDtsn?02rY_*9=y$Nhc#t4SvJ{%U(JIbzz-$P
z)<2~p)I$h)%>3SD-rM`jD}ZzCH&IjQ$1c;6b3xB3Eh!jhbw+v4g`Rv1qs6<4O@;1^
z=A=`yiN1?w90!F?!r|HnlTqO5?Ns5hH~a%CQYP%F%g9(gclwF~P28ZrzW9eeP&g1y
zUIreEx6C?nmY)?adc);l<4_oz{0IC65$y3pY2^z%G2TQe-%~*u2QDtHbz!j;uW&MS
zMWQLE_=&ZNME07N1$xmXuzIyhR@m@fx>{pb7BSzLRHVaSOFgT`RybO8%b<}d%u+z4ptEyWq6=h$Nen5zUz^vewspKlB{jpHe2~54?
z(l~XfeM=x-B!8qH8Sg$>!@8o@Qp}Ds8!eN!(6BqxR_C#j+He^OOj6s_Qtfo#h|D2=x6ofbi3X2)cyO-yTLUTHi%v
literal 0
HcmV?d00001
diff --git a/boot-valuation/boot-valuation-server/target/classes/com/boot/valuation/service/impl/ValuationServiceImpl.class b/boot-valuation/boot-valuation-server/target/classes/com/boot/valuation/service/impl/ValuationServiceImpl.class
new file mode 100644
index 0000000000000000000000000000000000000000..b4b7149444dac1584678f7cc7470b6e1a7371c83
GIT binary patch
literal 8427
zcmd5>dwi5hOVx)cGtaVSF5hOUESXBIp1Yw0u$5z
z(cf?TqciWkmvf$TKku8fuYUe10ITKlFbo7t1TB=HR4{XIY=0~|6iW_7yLRuj`?7-4
zb@608yFn1BsqHO82xTV17Rq4>R`;b6(cP(3Ho8AHG!o0kQ^{z?PVbNR+0l4ncqrQI
zPj|bsZJZR$$nEZk4G-ICL0x+hN(pB%Ps82ZScd7CVPd9*S(q)D>p)J#vV+l0@qre*
zFP?~zM{sBB)-FM1d$DEGn2QP%l@_WnPw?g<+&Pt?IQ^+aES`+E*n8qhdrK@GOW0XO
z9PaLE+S+q-Pg_T;V2;bh(OX+GYY*7z#xO3yn@r5NumG0|X5}^O?GS|G$*gL~c9h$u
zpf0npND-MGZJpbCTD!xj#^olKSXhc>WaLoE#uIk5J=GT*>fuOWr1l6RHEnIRE{=)o
zL{g1f3(HYQKFQQAf~uOycGlwx6HyCq#+8EQQ>tZuD%uju#(GnN@&P-maN1MJ0YQb&
z;R2mhW0i%~xQhFShek3T@#IL>&Isn!Y%UI|99QES6KgFrpixj;1X6K75lknd)(n*q
z%i8^I{eqn}#oTP7p>q;7)=s@SN1ZyZ$9fAJRBdJC+m`9DV?%1ujTV~JqQQ>VruHzJ
z(PE<2!gYAdYf*5HgJ2rT-Vh&3(E-z{vbhsf+>#pEJ!BI{8#bG`!9qJaCd9M5fqL(E
zcIN%AMX`5T*rJHkiY@U>HkRzO73@|E-71qZ*BG|bYGd`NZ5Dd5ot_%cH0^OhVqQ&A
z_p99*#t!T>ag&8zc&lJ#5gU3&7|F(mGSTK#Vwi5x&HTfRvW;^BD;XacBm`$lu+QT)
z!MzHi&{IcoKvNsGvw#_O+Kihm{61oYK|QEtx1^cl)NMVly&(VaObC4z`oT?A6i(&w
zh^i7hQb~JMaQt;SdwQXvKw1teCK|^~}EEDg`
zIEGMdk673b=C*mBw!5fi-;+Ic55HmRo>cr0MlIZ`xaJn%(gf{b3bU5IQ#J4hn!sIe
zy-2l`JcK{A@JC8!jz`AVq&kwWzsJIR@xJ`J7b&kp^4H@$g;}y_feqsT4w`tsg%4=;
zt0(FU8wE}!@&&fg9htXiUuULeB<-{ns;CcI_z>=3#?kh{?s96LUo|dNnmWs23m;Ku
zsq%^C6PV{UAH|=TxYNR2xLXjN9HX0-^6iDDBxc}HVq_>AA0A>Pw@hNZNlaRNT9tN>
zg`*lRc@5;U@pK$h4SY;prDal&YsP&Rj;q|4OqAOTx}4~r(7?VsjE~}e3xB2>2xUfg
zXVbC1tZMI57EUUa8KmMln|HJspRw@gx~ADs>p^beK?|St4;At=@sQuVs4k;T>2z$g
zosxxd3ISzz+QOswoJ-R4T`k!Yi(Gd$9ZwE4hA<|O6=96yjET=%cpOhmsCDi>K}lwK
zD9#>sSz$u)h}7QX8o{X`-kdfYPiY{1L9n6NnW@vNhrO{JU&3FS_$yWNmzl7fC~;(0
zu`kGRZm-=~yHihn)xuxnYuX*Ms>ZS@Hk*}xnQ;iTdGq9P7T+-OO$*<`-w0;sdH7ox
zEQ7I3r~M9cWdBb3XYqFy{vQ9ph9v1sPt>r7#KgA+HIoN~*A;uhYX1303*W`}XylAr
zqMgLUkL;jLGk*CE%e=4MBCfeL_2zr$#-fvx#@0D}-@?<{52@#OXJcu{{lhqiXDs|s
z7s6aouqP*%-}e=bfr^B(a-a
zWsKb`UD&zR^v2S0{q0Q#vx9MF+cm{Z?em!Qw#hrg?2PSPvm6ZmjgyT`5y-`_5{Uo{1A%Q!<Iur@*n)XzBAetH0?6gO(h_|HD`=Yz;STYmc!+e@bk49s;
z1JS0DZ0eSH+U_Sfizu`?bjydnlFP-In%y
zce@o+lgoo*rpb&XXk^tE6J3FO=I*RyXxeU+u=TV3OPb&{aLV^7yp}Kq`}WbMo~z7E
zx{Z55k8KTkJ*V4pPfM{cRAf$qqTKrXfs~wT4UMKmn6`^lLrS!n
z)=_17-YNSz*TQVp?=>Z~fIsxMINLqlhPzWE=|1~9cKeK<3)6tU1zn-Jjg_Wo{A5_?
z>{OOwM!n3@$cz}`io%P?~|F}yJU&|GP-{$h|b&tZ#AJ=y>U@^&5J0vRIZ5|08aIgqoIBFV#kzm~zR&eI_F|2GTISsS!
z4AvNEDCPXR)429iG8!oz!=^D@&zVks9XWmw!gW9YdTRwSr{qgbMA
zdL$AY$Bhl99(h|`q%>lVWA_;LbgX#TnR@u5llK%kxmPKTA#n^1dg|>YG>$CEID>b%
zgB)pxFr~WfK9spkTxP%fm_zDa3T?9Uc@)t}P)vHXIO}oz4t{mxcz1(2Q5hjuy{czN
z;YZofwcl
z49Z^YmHpT!??gi0g}2KAq~$O&au2d{9Q)+~UTYu0s62{y%j0;DoW(100l};{Ea~
zd_Z2rAtQ)8jBXlUxovb0G~%Ka7nX%pICOg2py6xX-{`qg4VDq;4a|Ml9zj
zh#KQcDdDIDtBj>mDkh)KNr!rzb)Kpxgv&Xu!6S}x)HO)i5tRduR0K_r%N>;%Twf|>6hA;r
ze0A_J?c?tNcP-Hzw%koYE{MG@oN=5WqE8YLQwle_aHczl9w*T!nLM9zAYA4W%0XD-
zK?q`zgdM$?>8pvyIN>o~<}r4%q^l22eX1Il^{0!n{u)`I#S(m@fc3H*>t#9C)pTn$
zc^UYSh=rD=J<)y4yg;v^P$Dk`#A5UrIo5%3+d`7SE)
zJx1x%jJIbBpz^O6^hy1%D+l!ku@tJ~b!9MK#wz+zgvj{@B9|*I=%wTOKhZ!AQwCzN5*UL>$S3PM%un
z6z?BX^5;1E86TmaXIA<-HgSAC3w#F)=Pv5uRz~L`R_Z%gr8Ty9QLMEnlW8)Y%|JaW
zWQNRSl;4V(&YY=2JDTEvBQK)yLE+zvXkOm$Wwy+rSv#;v<~k9*3#+6;BU&nXM*9PI
zR}}(|j#nUf9t$1bU45gm;aemL;^-#J4~HM55~dN+AA_v}%l)q!!5GK~6S@VLK%)FaVTi_3_FEgJRsba-=9yKlc|Q5_4*Yl`iq+ZF2ew~!EYcY{z{yZqtaGW{hbIc3hVm^499nEu${}-f+6+a@D
zERdygscevi(k+W6A(zW-oH;19a+lP}{ZcOvN>m=r{pch6VhgUMLLXUrPKJebOkKg8dxelfz{F**eE*!
zopMuPm%KG#OTXqkqP~Q0eAnW6(c-QzP;X)`3o&z6%Y0eDjPn9zyp*GI_Ge}6%VuMm
zB>WR{8&BxIkQ~GkXJ1(E;t8c<$^HHbc9Ihk2G&?lD>X^E4It5EtflB{_cNj30WIDHw9
literal 0
HcmV?d00001
diff --git a/boot-valuation/boot-valuation-server/target/classes/mapper/ValuationMapper.xml b/boot-valuation/boot-valuation-server/target/classes/mapper/ValuationMapper.xml
new file mode 100644
index 0000000..5b6cf4c
--- /dev/null
+++ b/boot-valuation/boot-valuation-server/target/classes/mapper/ValuationMapper.xml
@@ -0,0 +1,53 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/boot-valuation/pom.xml b/boot-valuation/pom.xml
new file mode 100644
index 0000000..8573fb5
--- /dev/null
+++ b/boot-valuation/pom.xml
@@ -0,0 +1,26 @@
+
+
+ 4.0.0
+
+ com.boot
+ boot
+ 3.6.3
+
+
+ boot-valuation
+ pom
+
+ boot-valuation-common
+ boot-valuation-remote
+ boot-valuation-server
+
+
+
+ 17
+ 17
+ UTF-8
+
+
+
diff --git a/boot-valuation/target/boot-valuation-3.6.3.jar b/boot-valuation/target/boot-valuation-3.6.3.jar
new file mode 100644
index 0000000000000000000000000000000000000000..4cb646c9882426a3ed85cb65444fb36f7f799312
GIT binary patch
literal 1493
zcmWIWW@h1H0D+>JQ4wGUl;8x?zOEsTx}JV+`T7Xb)7iapDYQRBBp&n
zrDErt?jT|Bpx~0ZT5CmQxP>Mg2Z`1QpAPyg()0Dqm!8UFu~kjm6SF6V0p>VNKky?vE;q3(H4p9+OvMtIij(tm^^)@QOYrDY$D<3R
zRktiLr!=u7Gaq3!2ZIeT5Vs#$_Rffrf#Ez81A`v%h76H!6V?P6`G;wE
zCryYEb(&WB>EpjCb}G?Qg1J}t3&g9pZK*6O@yj<@7s)MTc=m_j1S8eD+MAD~r&LbY
znCCYkr%Kyz)4JCI+xePi>qI|X|M%Tl>nl2=8tt-R~%4S
zEp@nY-8;^>bupnR%enDzcNoHzsaGC#EZ(T1PPv1a~RUsdIb-d3$ej4=c
z?D^mVZ{HvTqhNzATZ~M$7?}kYeCNGrwqb*jL4bjgfziXKUizo>bwBuQ^gVa}s`sh$
z`alsKt&=|9K6;E?O)Mp+g^Im|y^TIMs!dxeCdw?i?O0V>)iH2VXJis##+_k-J^=y&
zhPRF&8Y%n2v|-P{AjKfCq!A@KBW33RZ
zr1>L|iKZDT58^fjY(xqS@MdKL8N&{Q0zgC7GlO^l7k$ki
literal 0
HcmV?d00001
diff --git a/boot-valuation/target/maven-archiver/pom.properties b/boot-valuation/target/maven-archiver/pom.properties
new file mode 100644
index 0000000..ddd9607
--- /dev/null
+++ b/boot-valuation/target/maven-archiver/pom.properties
@@ -0,0 +1,5 @@
+#Generated by Maven
+#Mon Feb 26 19:11:34 GMT+08:00 2024
+groupId=com.boot
+artifactId=boot-valuation
+version=3.6.3
diff --git a/boot-valuation/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/boot-valuation/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
new file mode 100644
index 0000000..e69de29
diff --git a/boot-valuation/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/boot-valuation/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
new file mode 100644
index 0000000..e69de29
diff --git a/boot-visual/boot-monitor/src/main/resources/bootstrap.yml b/boot-visual/boot-monitor/src/main/resources/bootstrap.yml
index 43226f4..45c3500 100644
--- a/boot-visual/boot-monitor/src/main/resources/bootstrap.yml
+++ b/boot-visual/boot-monitor/src/main/resources/bootstrap.yml
@@ -14,13 +14,14 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 124.223.15.200:8848
+ server-addr: 122.152.215.207:8848
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
config:
# 配置中心地址
- server-addr: 124.223.15.200:8848
+ server-addr: 122.152.215.207:8848
# 配置文件格式
file-extension: yml
# 共享配置
shared-configs:
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
- namespace: 0aeaa321-b967-4df4-8fae-d55617039cb3
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
diff --git a/boot-visual/boot-monitor/target/classes/bootstrap.yml b/boot-visual/boot-monitor/target/classes/bootstrap.yml
index 43226f4..45c3500 100644
--- a/boot-visual/boot-monitor/target/classes/bootstrap.yml
+++ b/boot-visual/boot-monitor/target/classes/bootstrap.yml
@@ -14,13 +14,14 @@ spring:
nacos:
discovery:
# 服务注册地址
- server-addr: 124.223.15.200:8848
+ server-addr: 122.152.215.207:8848
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
config:
# 配置中心地址
- server-addr: 124.223.15.200:8848
+ server-addr: 122.152.215.207:8848
# 配置文件格式
file-extension: yml
# 共享配置
shared-configs:
- application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension}
- namespace: 0aeaa321-b967-4df4-8fae-d55617039cb3
+ namespace: 305eac8a-d1bd-4c64-8945-ad0c19c359c5
diff --git a/logs/boot-auth/info.2023-11-20.log b/logs/boot-auth/info.2023-11-20.log
index a901165..6431a27 100644
--- a/logs/boot-auth/info.2023-11-20.log
+++ b/logs/boot-auth/info.2023-11-20.log
@@ -95,7 +95,7 @@ java.io.IOException: 远程主机强迫关闭了一个现有的连接。
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
-21:32:21.505 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-21:32:22.279 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200:6379
+21:32:21.505 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+21:32:22.279 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207:6379
21:34:34.875 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:34:34.913 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
diff --git a/logs/boot-auth/info.2024-02-21.log b/logs/boot-auth/info.2024-02-21.log
index 1feeee9..1c4aaa4 100644
--- a/logs/boot-auth/info.2024-02-21.log
+++ b/logs/boot-auth/info.2024-02-21.log
@@ -17,17 +17,17 @@
14:38:25.361 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth.yml, group=DEFAULT_GROUP
14:38:25.363 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth-dev.yml, group=DEFAULT_GROUP
14:38:25.623 [RMI TCP Connection(2)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
-15:24:49.829 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-15:24:58.916 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:07.223 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:23.710 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:53.814 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:23.912 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:54.013 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:24.113 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:54.214 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:24.323 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.412 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.444 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200/:6379
+15:24:49.829 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+15:24:58.916 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:07.223 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:23.710 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:53.814 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:23.912 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:54.013 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:24.113 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:54.214 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:24.323 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.412 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.444 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207/:6379
21:34:14.417 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:34:14.427 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
diff --git a/logs/boot-auth/info.log b/logs/boot-auth/info.log
index 6062e0b..8812056 100644
--- a/logs/boot-auth/info.log
+++ b/logs/boot-auth/info.log
@@ -82,3 +82,66 @@
15:23:09.173 [RMI TCP Connection(1)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:33:13.814 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:33:13.828 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:40:04.062 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:40:04.139 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:40:04.526 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:04.526 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:05.963 [main] INFO c.b.a.BootAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:40:07.667 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"]
+14:40:07.668 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:40:07.669 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:40:07.871 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:40:09.139 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:40:10.358 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9200"]
+14:40:10.385 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:10.385 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:10.540 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-auth 10.3.216.29:9200 register finished
+14:40:10.733 [main] INFO c.b.a.BootAuthApplication - [logStarted,61] - Started BootAuthApplication in 7.323 seconds (JVM running for 8.942)
+14:40:10.749 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth, group=DEFAULT_GROUP
+14:40:10.750 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth.yml, group=DEFAULT_GROUP
+14:40:10.751 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth-dev.yml, group=DEFAULT_GROUP
+14:40:10.825 [RMI TCP Connection(1)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:52:41.707 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:52:41.717 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:54:58.786 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:54:58.842 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:54:59.151 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:54:59.152 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:00.637 [main] INFO c.b.a.BootAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:55:02.064 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"]
+14:55:02.065 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:55:02.066 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:55:02.188 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:55:03.155 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:55:04.577 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9200"]
+14:55:04.607 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:04.607 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:04.782 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-auth 10.3.216.29:9200 register finished
+14:55:05.032 [main] INFO c.b.a.BootAuthApplication - [logStarted,61] - Started BootAuthApplication in 6.731 seconds (JVM running for 7.538)
+14:55:05.050 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth, group=DEFAULT_GROUP
+14:55:05.051 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth.yml, group=DEFAULT_GROUP
+14:55:05.052 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth-dev.yml, group=DEFAULT_GROUP
+14:55:05.571 [RMI TCP Connection(3)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:57:51.965 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:57:51.979 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:58:19.567 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:58:19.624 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:58:19.934 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:19.935 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:21.207 [main] INFO c.b.a.BootAuthApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:58:22.472 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9200"]
+14:58:22.474 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:58:22.474 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:58:22.576 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:58:23.508 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:58:24.764 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9200"]
+14:58:24.787 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:24.787 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:24.974 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-auth 10.3.216.29:9200 register finished
+14:58:25.190 [main] INFO c.b.a.BootAuthApplication - [logStarted,61] - Started BootAuthApplication in 6.095 seconds (JVM running for 6.752)
+14:58:25.206 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth, group=DEFAULT_GROUP
+14:58:25.206 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth.yml, group=DEFAULT_GROUP
+14:58:25.208 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-auth-dev.yml, group=DEFAULT_GROUP
+14:58:25.345 [RMI TCP Connection(1)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:59:43.129 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:59:43.142 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
diff --git a/logs/boot-file/info.log b/logs/boot-file/info.log
index f81f53d..972d278 100644
--- a/logs/boot-file/info.log
+++ b/logs/boot-file/info.log
@@ -19,3 +19,66 @@
14:38:29.247 [RMI TCP Connection(4)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
15:38:11.022 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:38:11.037 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:40:08.989 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:40:09.064 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:40:09.399 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:09.400 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:10.825 [main] INFO c.b.f.BootFileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:40:12.152 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
+14:40:12.154 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:40:12.154 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:40:12.278 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:40:13.161 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:40:14.951 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
+14:40:14.974 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:14.974 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:15.173 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-file 10.3.216.29:9300 register finished
+14:40:15.534 [main] INFO c.b.f.BootFileApplication - [logStarted,61] - Started BootFileApplication in 7.134 seconds (JVM running for 8.158)
+14:40:15.550 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file.yml, group=DEFAULT_GROUP
+14:40:15.551 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file, group=DEFAULT_GROUP
+14:40:15.552 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file-dev.yml, group=DEFAULT_GROUP
+14:40:15.659 [RMI TCP Connection(3)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:52:41.664 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:52:41.676 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:55:01.150 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:55:01.211 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:55:01.538 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:01.539 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:02.971 [main] INFO c.b.f.BootFileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:55:04.503 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
+14:55:04.505 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:55:04.505 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:55:04.659 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:55:05.358 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:55:06.988 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
+14:55:07.020 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:07.021 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:07.202 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-file 10.3.216.29:9300 register finished
+14:55:07.619 [main] INFO c.b.f.BootFileApplication - [logStarted,61] - Started BootFileApplication in 7.012 seconds (JVM running for 7.772)
+14:55:07.635 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file.yml, group=DEFAULT_GROUP
+14:55:07.635 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file, group=DEFAULT_GROUP
+14:55:07.636 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file-dev.yml, group=DEFAULT_GROUP
+14:55:08.185 [RMI TCP Connection(2)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:57:52.049 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:57:52.067 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:58:24.274 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:58:24.332 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:58:24.652 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:24.652 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:26.075 [main] INFO c.b.f.BootFileApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:58:27.300 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"]
+14:58:27.302 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:58:27.302 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:58:27.413 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:58:28.044 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:58:29.393 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"]
+14:58:29.415 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:29.415 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:29.588 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-file 10.3.216.29:9300 register finished
+14:58:29.968 [main] INFO c.b.f.BootFileApplication - [logStarted,61] - Started BootFileApplication in 6.251 seconds (JVM running for 7.034)
+14:58:29.984 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file.yml, group=DEFAULT_GROUP
+14:58:29.984 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file, group=DEFAULT_GROUP
+14:58:29.985 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-file-dev.yml, group=DEFAULT_GROUP
+14:58:30.305 [RMI TCP Connection(3)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:59:43.073 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:59:43.097 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
diff --git a/logs/boot-gateway/error.log b/logs/boot-gateway/error.log
index 5d3c55d..342181e 100644
--- a/logs/boot-gateway/error.log
+++ b/logs/boot-gateway/error.log
@@ -1 +1,2 @@
15:23:43.011 [reactor-http-nio-2] ERROR c.b.g.f.AuthFilter - [unauthorizedResponse,104] - [鉴权异常处理]请求路径:/system/user/getInfo
+14:59:24.869 [reactor-http-nio-4] ERROR c.b.g.f.AuthFilter - [unauthorizedResponse,104] - [鉴权异常处理]请求路径:/valuation/valuation/compute
diff --git a/logs/boot-gateway/info.2023-11-20.log b/logs/boot-gateway/info.2023-11-20.log
index 084b685..8a447dc 100644
--- a/logs/boot-gateway/info.2023-11-20.log
+++ b/logs/boot-gateway/info.2023-11-20.log
@@ -355,8 +355,8 @@ java.io.IOException: 远程主机强迫关闭了一个现有的连接。
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
-21:32:21.493 [lettuce-eventExecutorLoop-3-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-21:32:21.786 [lettuce-nioEventLoop-5-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200:6379
+21:32:21.493 [lettuce-eventExecutorLoop-3-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+21:32:21.786 [lettuce-nioEventLoop-5-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207:6379
21:32:28.306 [boundedElastic-2] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
21:32:45.341 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
21:33:05.361 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
diff --git a/logs/boot-gateway/info.2024-02-21.log b/logs/boot-gateway/info.2024-02-21.log
index 32dad2d..2076cc8 100644
--- a/logs/boot-gateway/info.2024-02-21.log
+++ b/logs/boot-gateway/info.2024-02-21.log
@@ -53,18 +53,18 @@
15:23:50.700 [boundedElastic-60] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
15:24:10.763 [boundedElastic-63] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
15:24:30.753 [boundedElastic-60] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
-15:24:49.724 [lettuce-eventExecutorLoop-3-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-15:24:58.821 [lettuce-eventExecutorLoop-3-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:07.113 [lettuce-eventExecutorLoop-3-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:23.618 [lettuce-eventExecutorLoop-3-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:53.712 [lettuce-eventExecutorLoop-3-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:23.819 [lettuce-eventExecutorLoop-3-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:53.911 [lettuce-eventExecutorLoop-3-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:24.022 [lettuce-eventExecutorLoop-3-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:54.120 [lettuce-eventExecutorLoop-3-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:24.218 [lettuce-eventExecutorLoop-3-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.312 [lettuce-eventExecutorLoop-3-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.354 [lettuce-nioEventLoop-5-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200/:6379
+15:24:49.724 [lettuce-eventExecutorLoop-3-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+15:24:58.821 [lettuce-eventExecutorLoop-3-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:07.113 [lettuce-eventExecutorLoop-3-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:23.618 [lettuce-eventExecutorLoop-3-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:53.712 [lettuce-eventExecutorLoop-3-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:23.819 [lettuce-eventExecutorLoop-3-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:53.911 [lettuce-eventExecutorLoop-3-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:24.022 [lettuce-eventExecutorLoop-3-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:54.120 [lettuce-eventExecutorLoop-3-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:24.218 [lettuce-eventExecutorLoop-3-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.312 [lettuce-eventExecutorLoop-3-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.354 [lettuce-nioEventLoop-5-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207/:6379
15:29:00.470 [boundedElastic-60] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
15:29:20.446 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
15:29:40.435 [boundedElastic-66] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
diff --git a/logs/boot-gateway/info.log b/logs/boot-gateway/info.log
index 90def60..b9b361b 100644
--- a/logs/boot-gateway/info.log
+++ b/logs/boot-gateway/info.log
@@ -82,3 +82,114 @@
15:23:13.679 [RMI TCP Connection(4)-10.3.216.29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
15:33:13.730 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:33:13.745 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:40:14.940 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:40:15.021 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:40:15.392 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:15.393 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:16.701 [main] INFO c.b.g.BootGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:40:19.981 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648
+14:40:20.480 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler
+14:40:20.828 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:20.829 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:21.004 [main] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:40:21.573 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:21.574 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:21.756 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-gateway 10.3.216.29:8080 register finished
+14:40:21.918 [main] INFO c.a.c.n.d.GatewayLocatorHeartBeatPublisher - [start,64] - Start nacos gateway locator heartBeat task scheduler.
+14:40:21.942 [main] INFO c.b.g.BootGatewayApplication - [logStarted,61] - Started BootGatewayApplication in 7.595 seconds (JVM running for 8.695)
+14:40:21.946 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway.yml, group=DEFAULT_GROUP
+14:40:21.947 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway-dev.yml, group=DEFAULT_GROUP
+14:40:21.948 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway, group=DEFAULT_GROUP
+14:40:22.055 [RMI TCP Connection(6)-10.3.216.29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:40:37.811 [boundedElastic-7] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:40:56.217 [boundedElastic-7] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:41:16.202 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:41:36.213 [boundedElastic-1] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:41:56.216 [boundedElastic-2] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:42:16.199 [boundedElastic-11] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:42:36.212 [boundedElastic-11] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:42:56.202 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:43:16.203 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:43:36.208 [boundedElastic-12] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:43:56.202 [boundedElastic-12] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:44:16.226 [boundedElastic-15] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:44:36.207 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:44:56.222 [boundedElastic-2] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:45:16.210 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:45:36.222 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:45:56.217 [boundedElastic-11] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:46:16.416 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:46:36.223 [boundedElastic-11] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:46:56.209 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:47:16.207 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:47:36.203 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:47:56.203 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:48:16.229 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:48:36.207 [boundedElastic-18] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:48:56.207 [boundedElastic-14] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:49:16.203 [boundedElastic-21] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:49:36.204 [boundedElastic-21] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:49:56.203 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:50:16.214 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:50:36.203 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:50:56.200 [boundedElastic-15] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:51:16.208 [boundedElastic-14] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:51:36.222 [boundedElastic-14] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:51:56.210 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:52:16.207 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:52:36.228 [boundedElastic-14] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:52:41.571 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:52:41.582 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:55:04.309 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:55:04.373 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:55:04.745 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:04.745 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:06.358 [main] INFO c.b.g.BootGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:55:09.837 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648
+14:55:10.346 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler
+14:55:10.752 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:10.754 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:10.918 [main] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:55:11.580 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:11.581 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:11.767 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-gateway 10.3.216.29:8080 register finished
+14:55:11.922 [main] INFO c.a.c.n.d.GatewayLocatorHeartBeatPublisher - [start,64] - Start nacos gateway locator heartBeat task scheduler.
+14:55:11.951 [main] INFO c.b.g.BootGatewayApplication - [logStarted,61] - Started BootGatewayApplication in 8.262 seconds (JVM running for 9.185)
+14:55:11.958 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway.yml, group=DEFAULT_GROUP
+14:55:11.960 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway-dev.yml, group=DEFAULT_GROUP
+14:55:11.961 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway, group=DEFAULT_GROUP
+14:55:12.076 [RMI TCP Connection(2)-10.3.216.29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:55:20.782 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:55:39.050 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:55:59.056 [boundedElastic-6] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:56:19.047 [boundedElastic-6] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:56:39.072 [boundedElastic-1] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:56:59.043 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:57:19.250 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:57:39.074 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:57:52.118 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:57:52.130 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:58:30.768 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:58:30.822 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:58:31.155 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:31.155 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:33.502 [main] INFO c.b.g.BootGatewayApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:58:36.368 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,144] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648
+14:58:36.909 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,134] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler
+14:58:37.302 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:37.302 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:37.474 [main] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:58:38.097 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:38.097 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:38.316 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-gateway 10.3.216.29:8080 register finished
+14:58:38.477 [main] INFO c.a.c.n.d.GatewayLocatorHeartBeatPublisher - [start,64] - Start nacos gateway locator heartBeat task scheduler.
+14:58:38.506 [main] INFO c.b.g.BootGatewayApplication - [logStarted,61] - Started BootGatewayApplication in 8.299 seconds (JVM running for 9.068)
+14:58:38.511 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway.yml, group=DEFAULT_GROUP
+14:58:38.513 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway-dev.yml, group=DEFAULT_GROUP
+14:58:38.515 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gateway, group=DEFAULT_GROUP
+14:58:38.952 [RMI TCP Connection(4)-10.3.216.29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:58:52.367 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:59:10.967 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:59:30.927 [boundedElastic-1] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty
+14:59:43.004 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:59:43.019 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
diff --git a/logs/boot-gen/info.2023-11-20.log b/logs/boot-gen/info.2023-11-20.log
index e5d7241..6389bc2 100644
--- a/logs/boot-gen/info.2023-11-20.log
+++ b/logs/boot-gen/info.2023-11-20.log
@@ -93,8 +93,8 @@ java.io.IOException: 远程主机强迫关闭了一个现有的连接。
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
-21:32:21.494 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-21:32:22.275 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200:6379
+21:32:21.494 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+21:32:22.275 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207:6379
21:34:34.807 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:34:34.817 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
21:34:34.957 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
diff --git a/logs/boot-gen/info.log b/logs/boot-gen/info.log
index b0767c2..e351164 100644
--- a/logs/boot-gen/info.log
+++ b/logs/boot-gen/info.log
@@ -35,19 +35,94 @@ java.net.SocketException: Connection reset
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
-15:24:49.848 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-15:24:58.946 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:07.254 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:23.742 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:53.846 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:23.940 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:54.045 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:24.144 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:54.246 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:24.354 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.443 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.496 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200/:6379
+15:24:49.848 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+15:24:58.946 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:07.254 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:23.742 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:53.846 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:23.940 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:54.045 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:24.144 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:54.246 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:24.354 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.443 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.496 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207/:6379
15:38:11.085 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:38:11.098 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
15:38:11.222 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
15:38:11.226 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
+14:40:20.650 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:40:20.722 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:40:21.009 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:21.011 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:22.620 [main] INFO c.b.g.BootGenApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:40:24.456 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
+14:40:24.458 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:40:24.458 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:40:24.700 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:40:25.986 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:40:28.152 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9202"]
+14:40:28.179 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:28.179 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:28.354 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-gen 10.3.216.29:9202 register finished
+14:40:28.836 [main] INFO c.b.g.BootGenApplication - [logStarted,61] - Started BootGenApplication in 8.725 seconds (JVM running for 9.714)
+14:40:28.850 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen, group=DEFAULT_GROUP
+14:40:28.851 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen.yml, group=DEFAULT_GROUP
+14:40:28.852 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen-dev.yml, group=DEFAULT_GROUP
+14:40:29.212 [RMI TCP Connection(3)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:40:29.241 [RMI TCP Connection(1)-10.3.216.29] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
+14:40:29.852 [RMI TCP Connection(1)-10.3.216.29] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
+14:52:41.530 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:52:41.546 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:52:41.682 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
+14:52:41.689 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
+14:55:07.696 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:55:07.780 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:55:08.082 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:08.082 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:09.742 [main] INFO c.b.g.BootGenApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:55:11.748 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
+14:55:11.749 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:55:11.749 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:55:11.895 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:55:13.054 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:55:15.432 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9202"]
+14:55:15.465 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:15.466 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:15.638 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-gen 10.3.216.29:9202 register finished
+14:55:16.178 [main] INFO c.b.g.BootGenApplication - [logStarted,61] - Started BootGenApplication in 9.092 seconds (JVM running for 9.981)
+14:55:16.196 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen, group=DEFAULT_GROUP
+14:55:16.197 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen.yml, group=DEFAULT_GROUP
+14:55:16.198 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen-dev.yml, group=DEFAULT_GROUP
+14:55:16.574 [RMI TCP Connection(2)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:55:16.621 [RMI TCP Connection(3)-10.3.216.29] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
+14:55:17.106 [RMI TCP Connection(3)-10.3.216.29] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
+14:57:52.194 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:57:52.208 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:57:52.342 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
+14:57:52.348 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
+14:58:37.209 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:58:37.271 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:58:37.568 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:37.569 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:39.007 [main] INFO c.b.g.BootGenApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:58:40.861 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"]
+14:58:40.862 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:58:40.863 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:58:41.019 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:58:42.099 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:58:45.200 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9202"]
+14:58:45.247 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:45.247 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:45.436 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-gen 10.3.216.29:9202 register finished
+14:58:46.222 [main] INFO c.b.g.BootGenApplication - [logStarted,61] - Started BootGenApplication in 9.586 seconds (JVM running for 10.425)
+14:58:46.255 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen, group=DEFAULT_GROUP
+14:58:46.255 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen.yml, group=DEFAULT_GROUP
+14:58:46.255 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-gen-dev.yml, group=DEFAULT_GROUP
+14:58:46.723 [RMI TCP Connection(2)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:58:46.785 [RMI TCP Connection(1)-10.3.216.29] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
+14:58:47.476 [RMI TCP Connection(1)-10.3.216.29] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
+14:59:42.969 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:59:43.000 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:59:43.125 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
+14:59:43.131 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
diff --git a/logs/boot-job/info.2023-11-20.log b/logs/boot-job/info.2023-11-20.log
index a7cce02..428592c 100644
--- a/logs/boot-job/info.2023-11-20.log
+++ b/logs/boot-job/info.2023-11-20.log
@@ -165,8 +165,8 @@ java.io.IOException: 远程主机强迫关闭了一个现有的连接。
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
-21:32:21.486 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-21:32:22.274 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200:6379
+21:32:21.486 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+21:32:22.274 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207:6379
21:34:34.276 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
21:34:34.795 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:34:34.806 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
diff --git a/logs/boot-job/info.log b/logs/boot-job/info.log
index 70d3e48..39df610 100644
--- a/logs/boot-job/info.log
+++ b/logs/boot-job/info.log
@@ -51,18 +51,18 @@ java.net.SocketException: Connection reset
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
-15:24:49.864 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-15:24:58.963 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:07.270 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:23.756 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:53.860 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:23.970 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:54.059 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:24.159 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:54.260 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:24.369 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.459 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.493 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200/:6379
+15:24:49.864 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+15:24:58.963 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:07.270 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:23.756 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:53.860 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:23.970 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:54.059 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:24.159 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:54.260 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:24.369 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.459 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.493 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207/:6379
15:38:11.086 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
15:38:11.120 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:38:11.150 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
@@ -71,3 +71,138 @@ java.net.SocketException: Connection reset
15:38:11.284 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [shutdown,740] - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
15:38:11.284 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
15:38:11.288 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
+14:40:26.178 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:40:26.278 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:40:26.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:26.634 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:28.205 [main] INFO c.b.j.BootJobApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:40:30.512 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9203"]
+14:40:30.514 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:40:30.514 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:40:30.716 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:40:31.089 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1220] - Using default implementation for ThreadExecutor
+14:40:31.103 [main] INFO o.q.c.SchedulerSignalerImpl - [,61] - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
+14:40:31.104 [main] INFO o.q.c.QuartzScheduler - [,229] - Quartz Scheduler v.2.3.2 created.
+14:40:31.104 [main] INFO o.q.s.RAMJobStore - [initialize,155] - RAMJobStore initialized.
+14:40:31.105 [main] INFO o.q.c.QuartzScheduler - [initialize,294] - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
+ Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
+ NOT STARTED.
+ Currently in standby mode.
+ Number of jobs executed: 0
+ Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
+ Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
+
+14:40:31.105 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1374] - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
+14:40:31.105 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1378] - Quartz scheduler version: 2.3.2
+14:40:31.106 [main] INFO o.q.c.QuartzScheduler - [setJobFactory,2293] - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1aee6983
+14:40:31.395 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
+14:40:31.871 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
+14:40:32.337 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:40:34.368 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9203"]
+14:40:34.399 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:34.399 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:34.571 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-job 10.3.216.29:9203 register finished
+14:40:35.001 [main] INFO o.q.c.QuartzScheduler - [start,547] - Scheduler quartzScheduler_$_NON_CLUSTERED started.
+14:40:35.012 [main] INFO c.b.j.BootJobApplication - [logStarted,61] - Started BootJobApplication in 9.452 seconds (JVM running for 10.612)
+14:40:35.030 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job, group=DEFAULT_GROUP
+14:40:35.031 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job-dev.yml, group=DEFAULT_GROUP
+14:40:35.032 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job.yml, group=DEFAULT_GROUP
+14:40:35.243 [RMI TCP Connection(5)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:52:41.414 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
+14:52:41.451 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:52:41.461 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:52:41.603 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [shutdown,666] - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
+14:52:41.603 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
+14:52:41.603 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [shutdown,740] - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
+14:52:41.605 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
+14:52:41.611 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
+14:55:10.321 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:55:10.389 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:55:10.756 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:10.757 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:12.403 [main] INFO c.b.j.BootJobApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:55:14.539 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9203"]
+14:55:14.541 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:55:14.541 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:55:14.673 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:55:15.026 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1220] - Using default implementation for ThreadExecutor
+14:55:15.036 [main] INFO o.q.c.SchedulerSignalerImpl - [,61] - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
+14:55:15.036 [main] INFO o.q.c.QuartzScheduler - [,229] - Quartz Scheduler v.2.3.2 created.
+14:55:15.037 [main] INFO o.q.s.RAMJobStore - [initialize,155] - RAMJobStore initialized.
+14:55:15.038 [main] INFO o.q.c.QuartzScheduler - [initialize,294] - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
+ Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
+ NOT STARTED.
+ Currently in standby mode.
+ Number of jobs executed: 0
+ Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
+ Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
+
+14:55:15.038 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1374] - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
+14:55:15.038 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1378] - Quartz scheduler version: 2.3.2
+14:55:15.038 [main] INFO o.q.c.QuartzScheduler - [setJobFactory,2293] - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@39a2e77d
+14:55:15.368 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
+14:55:15.972 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
+14:55:16.533 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:55:19.326 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9203"]
+14:55:19.353 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:19.354 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:19.546 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-job 10.3.216.29:9203 register finished
+14:55:20.090 [main] INFO o.q.c.QuartzScheduler - [start,547] - Scheduler quartzScheduler_$_NON_CLUSTERED started.
+14:55:20.102 [main] INFO c.b.j.BootJobApplication - [logStarted,61] - Started BootJobApplication in 10.361 seconds (JVM running for 11.173)
+14:55:20.118 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job, group=DEFAULT_GROUP
+14:55:20.119 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job-dev.yml, group=DEFAULT_GROUP
+14:55:20.120 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job.yml, group=DEFAULT_GROUP
+14:55:20.341 [RMI TCP Connection(3)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:57:52.230 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
+14:57:52.253 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:57:52.265 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:57:52.404 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [shutdown,666] - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
+14:57:52.405 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
+14:57:52.405 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [shutdown,740] - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
+14:57:52.405 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
+14:57:52.411 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
+14:58:43.787 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:58:43.861 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:58:44.156 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:44.156 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:45.767 [main] INFO c.b.j.BootJobApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:58:47.802 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9203"]
+14:58:47.804 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:58:47.804 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:58:47.919 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:58:48.233 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1220] - Using default implementation for ThreadExecutor
+14:58:48.243 [main] INFO o.q.c.SchedulerSignalerImpl - [,61] - Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl
+14:58:48.243 [main] INFO o.q.c.QuartzScheduler - [,229] - Quartz Scheduler v.2.3.2 created.
+14:58:48.243 [main] INFO o.q.s.RAMJobStore - [initialize,155] - RAMJobStore initialized.
+14:58:48.243 [main] INFO o.q.c.QuartzScheduler - [initialize,294] - Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED'
+ Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally.
+ NOT STARTED.
+ Currently in standby mode.
+ Number of jobs executed: 0
+ Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads.
+ Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered.
+
+14:58:48.243 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1374] - Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance.
+14:58:48.243 [main] INFO o.q.i.StdSchedulerFactory - [instantiate,1378] - Quartz scheduler version: 2.3.2
+14:58:48.243 [main] INFO o.q.c.QuartzScheduler - [setJobFactory,2293] - JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@848d9bc
+14:58:48.522 [main] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting...
+14:58:48.990 [main] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed.
+14:58:49.501 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:58:52.391 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9203"]
+14:58:52.441 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:52.441 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:52.617 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-job 10.3.216.29:9203 register finished
+14:58:53.308 [main] INFO o.q.c.QuartzScheduler - [start,547] - Scheduler quartzScheduler_$_NON_CLUSTERED started.
+14:58:53.317 [main] INFO c.b.j.BootJobApplication - [logStarted,61] - Started BootJobApplication in 10.094 seconds (JVM running for 10.989)
+14:58:53.348 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job, group=DEFAULT_GROUP
+14:58:53.348 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job-dev.yml, group=DEFAULT_GROUP
+14:58:53.348 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-job.yml, group=DEFAULT_GROUP
+14:58:53.866 [RMI TCP Connection(3)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:59:42.895 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
+14:59:42.918 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:59:42.953 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:59:43.082 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [shutdown,666] - Scheduler quartzScheduler_$_NON_CLUSTERED shutting down.
+14:59:43.082 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [standby,585] - Scheduler quartzScheduler_$_NON_CLUSTERED paused.
+14:59:43.082 [SpringApplicationShutdownHook] INFO o.q.c.QuartzScheduler - [shutdown,740] - Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete.
+14:59:43.083 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated...
+14:59:43.088 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed.
diff --git a/logs/boot-system/error.2023-11-20.log b/logs/boot-system/error.2023-11-20.log
index 7e8244f..48cd007 100644
--- a/logs/boot-system/error.2023-11-20.log
+++ b/logs/boot-system/error.2023-11-20.log
@@ -55,7 +55,7 @@ Caused by: org.apache.ibatis.binding.BindingException: Invalid bound statement (
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:333)
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:157)
... 32 common frames omitted
-16:39:30.327 [main] ERROR c.a.d.p.DruidDataSource - [init,929] - init datasource error, url: jdbc:mysql://124.223.15.200:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+16:39:30.327 [main] ERROR c.a.d.p.DruidDataSource - [init,929] - init datasource error, url: jdbc:mysql://122.152.215.207:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
java.sql.SQLSyntaxErrorException: Unknown database 'ry-cloud'
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:121)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
@@ -308,7 +308,7 @@ java.sql.SQLSyntaxErrorException: Unknown database 'ry-cloud'
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at com.boot.system.BootSystemApplication.main(BootSystemApplication.java:22)
16:39:30.336 [main] ERROR o.s.b.w.e.t.TomcatStarter - [onStartup,61] - Error starting Tomcat context. Exception: org.springframework.beans.factory.UnsatisfiedDependencyException. Message: Error creating bean with name 'webMvcMetricsFilter' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfiguration.class]: Unsatisfied dependency expressed through method 'webMvcMetricsFilter' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'simpleMeterRegistry' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/export/simple/SimpleMetricsExportAutoConfiguration.class]: Initialization of bean failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'dataSourcePoolMetadataMeterBinder' defined in class path resource [org/springframework/boot/actuate/autoconfigure/metrics/jdbc/DataSourcePoolMetricsAutoConfiguration$DataSourcePoolMetadataMetricsConfiguration.class]: Unsatisfied dependency expressed through method 'dataSourcePoolMetadataMeterBinder' parameter 0; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: Invocation of init method failed; nested exception is com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error
-16:39:30.417 [Druid-ConnectionPool-Create-518953848] ERROR c.a.d.p.DruidDataSource - [run,2912] - create connection SQLException, url: jdbc:mysql://124.223.15.200:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8, errorCode 1049, state 42000
+16:39:30.417 [Druid-ConnectionPool-Create-518953848] ERROR c.a.d.p.DruidDataSource - [run,2912] - create connection SQLException, url: jdbc:mysql://122.152.215.207:3306/ry-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8, errorCode 1049, state 42000
java.sql.SQLSyntaxErrorException: Unknown database 'ry-cloud'
at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:121)
at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122)
@@ -472,7 +472,7 @@ Caused by: java.sql.SQLSyntaxErrorException: Unknown database 'ry-cloud'
at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:925)
at com.baomidou.dynamic.datasource.creator.DruidDataSourceCreator.doCreateDataSource(DruidDataSourceCreator.java:85)
... 108 common frames omitted
-16:44:24.855 [main] ERROR c.a.d.p.DruidDataSource - [init,929] - init datasource error, url: jdbc:mysql://124.223.15.200:3306/boot-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+16:44:24.855 [main] ERROR c.a.d.p.DruidDataSource - [init,929] - init datasource error, url: jdbc:mysql://122.152.215.207:3306/boot-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
@@ -741,7 +741,7 @@ Caused by: java.lang.ClassNotFoundException: Cannot find class: SysConfig
at org.apache.ibatis.io.Resources.classForName(Resources.java:322)
at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124)
... 80 common frames omitted
-20:25:25.028 [main] ERROR c.a.d.p.DruidDataSource - [init,929] - init datasource error, url: jdbc:mysql://124.223.15.200:3306/boot-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
+20:25:25.028 [main] ERROR c.a.d.p.DruidDataSource - [init,929] - init datasource error, url: jdbc:mysql://122.152.215.207:3306/boot-cloud?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8
com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure
The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server.
diff --git a/logs/boot-system/info.2023-11-20.log b/logs/boot-system/info.2023-11-20.log
index 315e343..a89618f 100644
--- a/logs/boot-system/info.2023-11-20.log
+++ b/logs/boot-system/info.2023-11-20.log
@@ -126,10 +126,10 @@ java.io.IOException: 远程主机强迫关闭了一个现有的连接。
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
-21:32:21.539 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-21:32:21.539 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-21:32:21.805 [lettuce-nioEventLoop-4-4] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200:6379
-21:32:21.965 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200:6379
+21:32:21.539 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+21:32:21.539 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+21:32:21.805 [lettuce-nioEventLoop-4-4] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207:6379
+21:32:21.965 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207:6379
21:34:34.640 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:34:34.658 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
21:34:34.811 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
diff --git a/logs/boot-system/info.2024-02-21.log b/logs/boot-system/info.2024-02-21.log
index d58fb59..f797745 100644
--- a/logs/boot-system/info.2024-02-21.log
+++ b/logs/boot-system/info.2024-02-21.log
@@ -36,30 +36,30 @@ java.net.SocketException: Connection reset
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.base/java.lang.Thread.run(Thread.java:842)
-15:24:49.881 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-15:24:49.881 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /124.223.15.200:6379
-15:24:58.978 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:24:58.981 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:07.175 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:07.286 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:23.587 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:23.679 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:53.682 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:25:53.784 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:23.774 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:23.880 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:53.880 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:26:53.983 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:23.980 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:24.082 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:54.075 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:27:54.182 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:24.188 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:24.277 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.280 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.324 [lettuce-nioEventLoop-4-5] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200/:6379
-15:28:54.384 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 124.223.15.200/:6379
-15:28:54.419 [lettuce-nioEventLoop-4-6] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 124.223.15.200/:6379
+15:24:49.881 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+15:24:49.881 [lettuce-eventExecutorLoop-1-13] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /122.152.215.207:6379
+15:24:58.978 [lettuce-eventExecutorLoop-1-17] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:24:58.981 [lettuce-eventExecutorLoop-1-18] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:07.175 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:07.286 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:23.587 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:23.679 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:53.682 [lettuce-eventExecutorLoop-1-5] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:25:53.784 [lettuce-eventExecutorLoop-1-6] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:23.774 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:23.880 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:53.880 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:26:53.983 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:23.980 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:24.082 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:54.075 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:27:54.182 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:24.188 [lettuce-eventExecutorLoop-1-11] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:24.277 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.280 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.324 [lettuce-nioEventLoop-4-5] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207/:6379
+15:28:54.384 [lettuce-eventExecutorLoop-1-16] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 122.152.215.207/:6379
+15:28:54.419 [lettuce-nioEventLoop-4-6] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 122.152.215.207/:6379
21:34:14.464 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
21:34:14.486 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
21:34:14.632 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
diff --git a/logs/boot-system/info.log b/logs/boot-system/info.log
index 40db504..35b0510 100644
--- a/logs/boot-system/info.log
+++ b/logs/boot-system/info.log
@@ -110,3 +110,87 @@
15:33:13.837 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
15:33:13.841 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
15:33:13.841 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
+14:40:38.262 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:40:38.315 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:40:38.563 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:38.564 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:40.061 [main] INFO c.b.s.BootSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:40:41.786 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9201"]
+14:40:41.787 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:40:41.787 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:40:41.906 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:40:43.094 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
+14:40:43.095 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
+14:40:43.096 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
+14:40:45.386 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:40:46.980 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9201"]
+14:40:47.010 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:47.010 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:47.192 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-system 10.3.216.29:9201 register finished
+14:40:47.777 [main] INFO c.b.s.BootSystemApplication - [logStarted,61] - Started BootSystemApplication in 10.116 seconds (JVM running for 11.198)
+14:40:47.795 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system-dev.yml, group=DEFAULT_GROUP
+14:40:47.796 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system.yml, group=DEFAULT_GROUP
+14:40:47.796 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system, group=DEFAULT_GROUP
+14:40:48.157 [RMI TCP Connection(3)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:52:41.340 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:52:41.350 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:52:41.493 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
+14:52:41.496 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
+14:52:41.501 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
+14:52:41.501 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
+14:55:16.455 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:55:16.535 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:55:16.867 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:16.868 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:18.739 [main] INFO c.b.s.BootSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:55:21.347 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9201"]
+14:55:21.348 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:55:21.349 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:55:21.449 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:55:22.690 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
+14:55:22.691 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
+14:55:22.691 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
+14:55:24.942 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:55:26.546 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9201"]
+14:55:26.571 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:26.571 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:26.745 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-system 10.3.216.29:9201 register finished
+14:55:27.343 [main] INFO c.b.s.BootSystemApplication - [logStarted,61] - Started BootSystemApplication in 11.527 seconds (JVM running for 12.406)
+14:55:27.356 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system-dev.yml, group=DEFAULT_GROUP
+14:55:27.356 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system.yml, group=DEFAULT_GROUP
+14:55:27.357 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system, group=DEFAULT_GROUP
+14:55:27.489 [RMI TCP Connection(7)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:57:52.411 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:57:52.424 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:57:52.556 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
+14:57:52.559 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
+14:57:52.563 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
+14:57:52.563 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
+14:58:53.367 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:58:53.437 [background-preinit] INFO o.h.v.i.util.Version - [,21] - HV000001: Hibernate Validator 6.2.5.Final
+14:58:53.726 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:53.727 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:55.225 [main] INFO c.b.s.BootSystemApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:58:57.577 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9201"]
+14:58:57.577 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:58:57.577 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:58:57.730 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:58:59.640 [main] INFO c.a.d.p.DruidDataSource - [init,996] - {dataSource-1,master} inited
+14:58:59.640 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,154] - dynamic-datasource - add a datasource named [master] success
+14:58:59.640 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,234] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
+14:59:02.309 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:59:04.129 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9201"]
+14:59:04.151 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:59:04.151 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:59:04.327 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-system 10.3.216.29:9201 register finished
+14:59:04.880 [main] INFO c.b.s.BootSystemApplication - [logStarted,61] - Started BootSystemApplication in 12.078 seconds (JVM running for 12.979)
+14:59:04.894 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system-dev.yml, group=DEFAULT_GROUP
+14:59:04.894 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system.yml, group=DEFAULT_GROUP
+14:59:04.895 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-system, group=DEFAULT_GROUP
+14:59:05.104 [RMI TCP Connection(11)-10.3.216.29] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:59:42.786 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:59:42.805 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:59:42.944 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,211] - dynamic-datasource start closing ....
+14:59:42.946 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2138] - {dataSource-1} closing ...
+14:59:42.951 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2211] - {dataSource-1} closed
+14:59:42.951 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource all closed success,bye
diff --git a/logs/boot-visual-monitor/info.log b/logs/boot-visual-monitor/info.log
index 5187b5a..f112db0 100644
--- a/logs/boot-visual-monitor/info.log
+++ b/logs/boot-visual-monitor/info.log
@@ -295,3 +295,63 @@ Caused by: java.net.SocketException: Network is unreachable: no further informat
at java.base/java.lang.Thread.run(Thread.java:842)
15:37:53.903 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
15:37:53.915 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:40:31.517 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:40:31.837 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:31.837 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:33.245 [main] INFO c.b.m.m.BootMonitorApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:40:34.408 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
+14:40:34.410 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:40:34.410 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:40:34.508 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:40:35.098 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:40:36.750 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
+14:40:37.127 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:40:37.127 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:40:37.324 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-monitor 10.3.216.29:9101 register finished
+14:40:37.775 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:40:38.031 [main] INFO c.b.m.m.BootMonitorApplication - [logStarted,61] - Started BootMonitorApplication in 7.12 seconds (JVM running for 8.409)
+14:40:38.043 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor, group=DEFAULT_GROUP
+14:40:38.044 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor-dev.yml, group=DEFAULT_GROUP
+14:40:38.045 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor.yml, group=DEFAULT_GROUP
+14:52:43.466 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:52:43.480 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:55:13.366 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:55:13.760 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:13.760 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:15.375 [main] INFO c.b.m.m.BootMonitorApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:55:16.754 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
+14:55:16.757 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:55:16.757 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:55:16.891 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:55:17.570 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:55:19.710 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
+14:55:20.024 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:55:20.025 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:55:20.250 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-monitor 10.3.216.29:9101 register finished
+14:55:20.737 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:55:21.038 [main] INFO c.b.m.m.BootMonitorApplication - [logStarted,61] - Started BootMonitorApplication in 8.325 seconds (JVM running for 9.193)
+14:55:21.049 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor, group=DEFAULT_GROUP
+14:55:21.050 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor-dev.yml, group=DEFAULT_GROUP
+14:55:21.051 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor.yml, group=DEFAULT_GROUP
+14:57:54.391 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:57:54.426 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
+14:58:46.024 [main] INFO c.a.n.c.e.SearchableProperties - [sortPropertySourceDefaultOrder,197] - properties search order:PROPERTIES->JVM->ENV->DEFAULT_SETTING
+14:58:46.388 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:46.388 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:47.904 [main] INFO c.b.m.m.BootMonitorApplication - [logStartupProfileInfo,637] - The following 1 profile is active: "dev"
+14:58:49.114 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"]
+14:58:49.114 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
+14:58:49.114 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/9.0.76]
+14:58:49.215 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
+14:58:49.806 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
+14:58:51.403 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"]
+14:58:51.676 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
+14:58:51.676 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
+14:58:51.859 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP boot-monitor 10.3.216.29:9101 register finished
+14:58:52.617 [main] INFO c.b.m.m.BootMonitorApplication - [logStarted,61] - Started BootMonitorApplication in 7.183 seconds (JVM running for 7.959)
+14:58:52.636 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor, group=DEFAULT_GROUP
+14:58:52.637 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor-dev.yml, group=DEFAULT_GROUP
+14:58:52.637 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,129] - [Nacos Config] Listening config: dataId=boot-monitor.yml, group=DEFAULT_GROUP
+14:58:52.737 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet'
+14:59:44.941 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
+14:59:44.953 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
diff --git a/pom.xml b/pom.xml
index b391a57..17d129a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -245,6 +245,7 @@
boot-gateway
boot-visual
boot-modules
+ boot-valuation
boot-common
pom
--
2.40.1
From 1eb1938a594afc98da0c9d8ab08568977a4c3c1b Mon Sep 17 00:00:00 2001
From: zhaokangyu <2948426977@qq.com>
Date: Sat, 2 Mar 2024 17:21:51 +0800
Subject: [PATCH 2/2] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=20=E8=AE=A1=E8=B4=B9?=
=?UTF-8?q?=E8=A7=84=E5=88=99?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.idea/compiler.xml | 21 ++--
.idea/encodings.xml | 8 ++
.idea/inspectionProfiles/Project_Default.xml | 14 +++
.idea/workspace.xml | 108 ++++-------------
.../boot-valuation-rule-common/pom.xml | 27 +++++
.../common/domain/ChargingMiddleTable.java | 35 ++++++
.../rule/common/domain/EstimatedOrder.java | 36 ++++++
.../boot/rule/common/domain/NightServer.java | 26 ++++
.../com/boot/rule/common/domain/Section.java | 24 ++++
.../rule/common/domain/vo/ValuationVo.java | 78 ++++++++++++
.../common/domain/ChargingMiddleTable.class | Bin 0 -> 6401 bytes
.../rule/common/domain/EstimatedOrder.class | Bin 0 -> 7483 bytes
.../boot/rule/common/domain/NightServer.class | Bin 0 -> 4852 bytes
.../com/boot/rule/common/domain/Section.class | Bin 0 -> 3555 bytes
.../rule/common/domain/vo/ValuationVo.class | Bin 0 -> 11226 bytes
.../boot-valuation-rule-remote/pom.xml | 28 +++++
.../boot-valuation-rule-server/pom.xml | 114 ++++++++++++++++++
.../rule/BootValuationRuleApplication.java | 33 +++++
.../boot/rule/controller/RuleController.java | 29 +++++
.../java/com/boot/rule/mapper/RuleMapper.java | 22 ++++
.../com/boot/rule/service/RuleService.java | 14 +++
.../rule/service/impl/RuleServiceImpl.java | 86 +++++++++++++
.../src/main/resources/bootstrap.yml | 27 +++++
.../src/main/resources/mpper/RuleMapper.xml | 34 ++++++
.../target/classes/bootstrap.yml | 27 +++++
.../rule/BootValuationRuleApplication.class | Bin 0 -> 1474 bytes
.../boot/rule/controller/RuleController.class | Bin 0 -> 1119 bytes
.../com/boot/rule/mapper/RuleMapper.class | Bin 0 -> 442 bytes
.../com/boot/rule/service/RuleService.class | Bin 0 -> 228 bytes
.../rule/service/impl/RuleServiceImpl.class | Bin 0 -> 4671 bytes
.../target/classes/mpper/RuleMapper.xml | 34 ++++++
boot-valuation-rule/pom.xml | 26 ++++
pom.xml | 1 +
33 files changed, 761 insertions(+), 91 deletions(-)
create mode 100644 .idea/inspectionProfiles/Project_Default.xml
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/pom.xml
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/ChargingMiddleTable.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/EstimatedOrder.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/NightServer.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/Section.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/vo/ValuationVo.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/target/classes/com/boot/rule/common/domain/ChargingMiddleTable.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/target/classes/com/boot/rule/common/domain/EstimatedOrder.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/target/classes/com/boot/rule/common/domain/NightServer.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/target/classes/com/boot/rule/common/domain/Section.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-common/target/classes/com/boot/rule/common/domain/vo/ValuationVo.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-remote/pom.xml
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/pom.xml
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/src/main/java/com/boot/rule/BootValuationRuleApplication.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/src/main/java/com/boot/rule/controller/RuleController.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/src/main/java/com/boot/rule/mapper/RuleMapper.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/src/main/java/com/boot/rule/service/RuleService.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/src/main/java/com/boot/rule/service/impl/RuleServiceImpl.java
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/src/main/resources/bootstrap.yml
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/src/main/resources/mpper/RuleMapper.xml
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/target/classes/bootstrap.yml
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/target/classes/com/boot/rule/BootValuationRuleApplication.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/target/classes/com/boot/rule/controller/RuleController.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/target/classes/com/boot/rule/mapper/RuleMapper.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/target/classes/com/boot/rule/service/RuleService.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/target/classes/com/boot/rule/service/impl/RuleServiceImpl.class
create mode 100644 boot-valuation-rule/boot-valuation-rule-server/target/classes/mpper/RuleMapper.xml
create mode 100644 boot-valuation-rule/pom.xml
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
index 1b7b669..ec3337c 100644
--- a/.idea/compiler.xml
+++ b/.idea/compiler.xml
@@ -6,28 +6,31 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
index 0bfe7a0..1867eec 100644
--- a/.idea/encodings.xml
+++ b/.idea/encodings.xml
@@ -45,6 +45,14 @@
+
+
+
+
+
+
+
+
diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..ee2c34b
--- /dev/null
+++ b/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 92f58ef..dc9bc20 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,85 +4,8 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
@@ -117,7 +40,7 @@
"RunOnceActivity.OpenProjectViewOnStart": "true",
"RunOnceActivity.ShowReadmeOnStart": "true",
"WebServerToolWindowFactoryState": "false",
- "git-widget-placeholder": "master",
+ "git-widget-placeholder": "zhaokangyu",
"jdk.selected.JAVA_MODULE": "17",
"last_opened_file_path": "D:/car/boot-Cloud1/pom.xml",
"node.js.detected.package.eslint": "true",
@@ -146,7 +69,7 @@
-
+
@@ -203,6 +126,13 @@
+
+
+
+
+
+
+
@@ -214,11 +144,25 @@
1709274342728
-
+
+
+
+
+ 1709276471469
+
+
+
+ 1709276471470
+
+
+
+
+
+
\ No newline at end of file
diff --git a/boot-valuation-rule/boot-valuation-rule-common/pom.xml b/boot-valuation-rule/boot-valuation-rule-common/pom.xml
new file mode 100644
index 0000000..f3f9126
--- /dev/null
+++ b/boot-valuation-rule/boot-valuation-rule-common/pom.xml
@@ -0,0 +1,27 @@
+
+
+ 4.0.0
+
+ com.boot
+ boot-valuation-rule
+ 3.6.3
+
+
+ boot-valuation-rule-common
+
+
+ 17
+ 17
+ UTF-8
+
+
+
+
+ com.boot
+ boot-common-core
+
+
+
+
diff --git a/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/ChargingMiddleTable.java b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/ChargingMiddleTable.java
new file mode 100644
index 0000000..d1ea2b5
--- /dev/null
+++ b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/ChargingMiddleTable.java
@@ -0,0 +1,35 @@
+package com.boot.rule.common.domain;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.util.Date;
+
+/**
+ * @ClassName ChargingMiddleTable
+ * @Description
+ * @Author
+ * @Date 2024/3/1 16:20
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class ChargingMiddleTable {
+ private Integer id;
+ private Integer cityId;
+ private Integer channelId;
+ private Integer serverTypeId;
+ private Integer rankId;
+ private Integer estimatedId;
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ private Date updateTime;
+ private String userName;
+ private Integer availableState;
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ private Date createTime;
+}
diff --git a/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/EstimatedOrder.java b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/EstimatedOrder.java
new file mode 100644
index 0000000..5861523
--- /dev/null
+++ b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/EstimatedOrder.java
@@ -0,0 +1,36 @@
+package com.boot.rule.common.domain;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+/**
+ * @ClassName EstimatedOrder
+ * @Description
+ * @Author
+ * @Date 2024/3/1 16:15
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class EstimatedOrder {
+ private Integer id;
+ private Integer cityId;
+ private Integer serverTypeId;
+ private Integer channelId;
+ private Integer rankId;
+ private Double kilometres;
+ private Integer serverTime;
+ private BigDecimal mealPrice;
+ private BigDecimal basicsPrice;
+ private Integer nightId;
+ private String sectionId;
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ private Date createTime;
+}
diff --git a/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/NightServer.java b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/NightServer.java
new file mode 100644
index 0000000..bb0d8ed
--- /dev/null
+++ b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/NightServer.java
@@ -0,0 +1,26 @@
+package com.boot.rule.common.domain;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import java.math.BigDecimal;
+
+/**
+ * @ClassName NightServer
+ * @Description
+ * @Author
+ * @Date 2024/3/1 16:22
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class NightServer {
+ private Integer id;
+ private BigDecimal nightServerMileagePrice;
+ private BigDecimal nightServerTimePrice;
+ private BigDecimal mileagePrice;
+ private BigDecimal timePrice;
+ private Double longWayMileage;
+ private BigDecimal longWayPrice;
+}
diff --git a/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/Section.java b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/Section.java
new file mode 100644
index 0000000..f7124a3
--- /dev/null
+++ b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/Section.java
@@ -0,0 +1,24 @@
+package com.boot.rule.common.domain;
+
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+
+import java.math.BigDecimal;
+
+/**
+ * @ClassName Section
+ * @Description
+ * @Author
+ * @Date 2024/3/1 16:24
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class Section {
+ private Integer id;
+ private Integer startTime;
+ private Integer endTime;
+ private BigDecimal kilometrePrice;
+ private BigDecimal timePrice;
+}
diff --git a/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/vo/ValuationVo.java b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/vo/ValuationVo.java
new file mode 100644
index 0000000..bca27d2
--- /dev/null
+++ b/boot-valuation-rule/boot-valuation-rule-common/src/main/java/com/boot/rule/common/domain/vo/ValuationVo.java
@@ -0,0 +1,78 @@
+package com.boot.rule.common.domain.vo;
+
+import com.boot.rule.common.domain.Section;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.AllArgsConstructor;
+import lombok.Data;
+import lombok.NoArgsConstructor;
+import org.springframework.format.annotation.DateTimeFormat;
+
+import java.math.BigDecimal;
+import java.util.Date;
+import java.util.List;
+
+/**
+ * @ClassName ValuationVo
+ * @Description
+ * @Author
+ * @Date 2024/3/1 15:52
+ */
+@Data
+@AllArgsConstructor
+@NoArgsConstructor
+public class ValuationVo {
+
+ // 城市id
+ private Integer cityId;
+
+ // 渠道id
+ private Integer channelId;
+
+ // 服务类型id
+ private Integer serverTypeId;
+
+ // 车辆级别id
+ private Integer rankId;
+
+ // 最低消费(套餐价格)
+ private BigDecimal mealPrice;
+
+ // 基本消费
+ private BigDecimal basicsPrice;
+
+ // 包含公里数
+ private Double kilometres;
+
+ // 包含服务时间
+ private Integer serverTime;
+
+ // 超服务公里单价
+ private BigDecimal mileagePrice;
+
+ // 超服务时长单价
+ private BigDecimal timePrice;
+
+ // 远途服务起算公里
+ private Double longWayMileage;
+
+ // 远途服务公里单价
+ private BigDecimal longWayPrice;
+
+ // 夜间服务加收公里数单价
+ private BigDecimal nightServerMileagePrice;
+
+ // 夜间服务加收书剑单价
+ private BigDecimal nightServerTimePrice;
+
+ // 芬顿计费规则List集合
+ private List sectionList;
+
+ // 操作人
+ private String userName;
+
+ // 创建时间
+ @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
+ private Date createTime;
+
+}
diff --git a/boot-valuation-rule/boot-valuation-rule-common/target/classes/com/boot/rule/common/domain/ChargingMiddleTable.class b/boot-valuation-rule/boot-valuation-rule-common/target/classes/com/boot/rule/common/domain/ChargingMiddleTable.class
new file mode 100644
index 0000000000000000000000000000000000000000..015afa766f05890e6c175d1cb1f2ff7cc0d16488
GIT binary patch
literal 6401
zcmcIoTW}j^6+XW#X;;$9mL=QCrfKRF6=K<{ni86_j!jZGah%v`$PE&1RjiGzSe9H}
z(xl~5Xn}AKP;TXZYq$j3LhaDNFz`T`VR+<;zQ7xAJTp+jcm97@yHYldnSo5k`|Ua3
zIsg9ux$M#Y;osMOO+-8BT8u)}qfywP2t@@I=4;D^)3sW&P;XUizFV$U3#Hm}v0N=o
zEf(tw6y*xm2py$BL&bwxCeCBq%d`ws@{ss1&OUg_&y8Ua;%q>{&M`#%`nY<>rN%
z5{nWB87zv;FBYp+yP~AM2KBMjXxR00cKz6e6w39x~`Ky%iBzEH)OWY9&OwXWPh(Mn?s0@Xk{CdZ1OVlM#b%^R%bUn&jn-)}81TManQ&vNTKQ*3~Aez{UOTby5Np!fNF
z9>9IupUzMCSgnd|icHTP8@*ppSS45AY`JP5YAv5eA5%RtJzJYER!$V_WxjWW;pSo)
z>u#6p{ueD5dxw
zS<