密码加密校验,密码修改,查询排查绑定路段,新增路段,路口信息

master
Zangzhipeng 2 years ago
parent 0c57e44a38
commit 5aa2941187
  1. 2
      hiatmp-api-server/src/main/java/com/hisense/hiatmp/urbantraffic/controller/loginController.java
  2. 29
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/controller/AuthController.java
  3. 56
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/controller/HighDangerController.java
  4. 11
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/controller/OperatorController.java
  5. 14
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/mapper/HighDangerMapper.java
  6. 2
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/mapper/OperatorMapper.java
  7. 10
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/model/BisRoadVO.java
  8. 9
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/service/AuthService.java
  9. 2
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/service/HighDangerService.java
  10. 32
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/service/impl/AuthServiceImpl.java
  11. 4
      hiatmp-base/src/main/java/com/hisense/hiatmp/base/service/impl/HighDangerBaseServiceImpl.java
  12. 104
      hiatmp-base/src/main/resources/sql-mapper/HighDangerMapper.xml
  13. 5
      hiatmp-base/src/main/resources/sql-mapper/OperatorMapper.xml
  14. BIN
      hiatmp-base/target/hiatmp-base.jar
  15. 2
      hiatmp-base/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
  16. 2
      hiatmp-base/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
  17. BIN
      hiatmp-common/target/hiatmp-common-0.1.0-SNAPSHOT.jar
  18. 17
      hiatmp-model/src/main/java/com/hisense/hiatmp/model/common/CrossingDTO.java
  19. 17
      hiatmp-model/src/main/java/com/hisense/hiatmp/model/common/ImportDangerDTO.java
  20. 17
      hiatmp-model/src/main/java/com/hisense/hiatmp/model/common/SectionDTO.java
  21. BIN
      hiatmp-model/target/hiatmp-model-0.1.0-SNAPSHOT.jar
  22. 103151
      log/error.log
  23. 107054
      log/info.log
  24. 112
      log/test.log
  25. 104835
      log/warn.log

@ -26,7 +26,7 @@ public class loginController {
List<User> user = userService.list();
if(user.isEmpty()){
// return new Response("登录失败:用户名不存在", -1, false);
return Result.fail();
return Result.fail("用户不存在");
}else {
if (user.get(0).getCuserpwd().equals(password)){
// return new Response("登录成功", 1, true);

@ -3,6 +3,7 @@ package com.hisense.hiatmp.base.controller;
import com.hisense.hiatmp.base.jwt.JwtUtil;
import com.hisense.hiatmp.base.mapper.OperatorMapper;
import com.hisense.hiatmp.base.model.OperatorDTO;
import com.hisense.hiatmp.base.service.AuthService;
import com.hisense.hiatmp.model.common.Operator;
import com.hisense.hiatmp.model.common.ServerResponse;
import lombok.extern.slf4j.Slf4j;
@ -18,10 +19,13 @@ import java.util.Map;
@RequestMapping("/auth")
public class AuthController {
static Map<Integer, Operator> userMap = new HashMap<>();
@Autowired
private AuthService authService;
@Autowired
OperatorMapper operatorMapper;
private OperatorMapper operatorMapper;
static Map<Integer, Operator> userMap = new HashMap<>();
/**
* 模拟用户 登录
@ -29,9 +33,11 @@ public class AuthController {
@PostMapping("/login")
public ServerResponse<?> login(@RequestBody OperatorDTO operator) {
String encrypt = authService.encrypt(operator.getCuserpwd()+ operator.getNuserid());
List<Operator> allOperator = operatorMapper.getAllOperator();
for(Operator ope : allOperator) {
if (ope.getNuserid().equals(operator.getNuserid()) && ope.getCuserpwd().equals(operator.getCuserpwd())) {
if (ope.getNuserid().equals(operator.getNuserid()) && ope.getCuserpwd().equals(encrypt)) {
log.info("登录成功!生成token!");
String token = JwtUtil.createToken(ope);
return ServerResponse.ok(token);
@ -39,4 +45,21 @@ public class AuthController {
}
return ServerResponse.error("无用户信息");
}
@PostMapping("/updatePwd")
public ServerResponse<?> updatePwd(@RequestParam String nuserid,@RequestParam String nuserpwd){
Operator operatorById = operatorMapper.getOperatorById(nuserid);
if(operatorById!=null){
String encrypt = authService.encrypt(nuserpwd + nuserid);
operatorById.setCuserpwd(encrypt);
String rowsAffected = operatorMapper.updateByPrimaryKeySelective(operatorById.getNuserid(), operatorById.getCuserpwd());
if(rowsAffected != null){
return ServerResponse.ok("<" + operatorById.getCusername() + ">用户密码修改成功");
}else{
return ServerResponse.error("修改失败");
}
// return ServerResponse.ok("修改成功");
}
return ServerResponse.error("无用户信息");
}
}

@ -4,6 +4,7 @@ import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.hisense.hiatmp.base.mapper.HighDangerMapper;
import com.hisense.hiatmp.base.mapper.OperatorMapper;
import com.hisense.hiatmp.base.model.BisRoadVO;
import com.hisense.hiatmp.base.model.OperatorDTO;
import com.hisense.hiatmp.base.service.HighDangerService;
import com.hisense.hiatmp.model.common.*;
@ -12,10 +13,7 @@ import oracle.jdbc.proxy.annotation.Post;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.*;
@RestController
@RequestMapping(value = "/highDanger")
@ -143,21 +141,57 @@ public class HighDangerController {
return ServerResponse.ok("人工排查成功");
}
// 保存人工排查
// 查询当前排查所在路段
@GetMapping("/getDangerRoad")
public ServerResponse<?> getDangerRoad(@RequestParam String businessId){
List<BisRoadVO> roadInfo = highDangerMapper.getRoadInfo(businessId);
if(roadInfo != null){
return ServerResponse.ok(roadInfo);
}else {
return ServerResponse.error("无对应路口信息");
}
}
// 查询重点排查选项
@GetMapping("/getImportDangers")
public ServerResponse<?> getImportDangers(){
List<ImportDangerDTO> importDanger = highDangerMapper.getImportDanger();
if(importDanger != null){
return ServerResponse.ok(importDanger);
}else {
return ServerResponse.error("无对应路口信息");
}
}
// 新增路段
@PostMapping("/saveRoad")
public ServerResponse<?> saveRoad(@RequestBody SectionDTO sectionDTO){
Random random = new Random();
long randomNumber = (long) (random.nextDouble() * 9000000000000000L) + 1000000000000000L;
String section = highDangerMapper.saveRoad(String.valueOf(randomNumber), sectionDTO.getSectionName(), sectionDTO.getUpCrossingCode(), sectionDTO.getDownCrossingCode());
if(section != null && section != ""){
return ServerResponse.ok(section);
}else {
return ServerResponse.error("新增路段失败");
}
}
return ServerResponse.ok();
// 新增路口
@PostMapping("/saveCrossing")
public ServerResponse<?> saveCrossing(@RequestBody CrossingDTO crossingDTO){
Random random = new Random();
long randomNumber = (long) (random.nextDouble() * 9000000000000000L) + 1000000000000000L;
String crossing = highDangerMapper.saveCrossing(String.valueOf(randomNumber), crossingDTO.getCrossingName(), crossingDTO.getLongitude(), crossingDTO.getLatitude());
if(crossing != null && crossing != ""){
return ServerResponse.ok(crossing);
}else {
return ServerResponse.error("新增路口失败");
}
}

@ -41,6 +41,17 @@ public class OperatorController {
}
}
// 修改密码
@GetMapping("/getAllOperator/{nuserid}")
public ServerResponse<?> updataPwd(){
List<Operator> allOperator = operatorMapper.getAllOperator();
if(allOperator != null){
return ServerResponse.ok(allOperator);
}else{
return ServerResponse.error("未查询到用户信息");
}
}
}

@ -1,10 +1,8 @@
package com.hisense.hiatmp.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.hisense.hiatmp.model.common.BisRoadDTO;
import com.hisense.hiatmp.model.common.HighDangerBase;
import com.hisense.hiatmp.model.common.HighDangerBaseNum;
import com.hisense.hiatmp.model.common.HighDangerBaseVO;
import com.hisense.hiatmp.base.model.BisRoadVO;
import com.hisense.hiatmp.model.common.*;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.springframework.stereotype.Repository;
@ -30,6 +28,12 @@ public interface HighDangerMapper {
List<BisRoadDTO> getAllRoadInfo();
BisRoadDTO getRoadInfo();
List<BisRoadVO> getRoadInfo(String businessId);
List<ImportDangerDTO> getImportDanger();
String saveRoad(String sectionCode, String sectionName, String upCrossingCode, String downCrossingCode);
String saveCrossing(String crossingCode, String crossingName,Float longitude, Float latitude);
}

@ -13,4 +13,6 @@ public interface OperatorMapper {
List<Operator> getAllOperator();
Operator getOperatorById(@Param("nuserid") String nuserid);
String updateByPrimaryKeySelective(@Param("cuserid") String cuserid,@Param("cuserpwd") String cuserpwd);
}

@ -35,5 +35,15 @@ public class BisRoadVO {
*/
private String roadStatus;
/**
* section_name
*/
private String sectionName;
/**
* section_name
*/
private String sectionCode;
}

@ -0,0 +1,9 @@
package com.hisense.hiatmp.base.service;
import org.springframework.stereotype.Service;
@Service
public interface AuthService {
public String encrypt(String input);
}

@ -16,4 +16,6 @@ public interface HighDangerService {
Double getPointDistance(Point point1,Point point2);
Map<String, Double> sortByValue(Map<String, Double> unsortedMap);
Map<String, Double> saveRoadOrCross();
}

@ -0,0 +1,32 @@
package com.hisense.hiatmp.base.service.impl;
import com.hisense.hiatmp.base.service.AuthService;
import org.springframework.stereotype.Service;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
@Service
public class AuthServiceImpl implements AuthService {
@Override
public String encrypt(String input) {
try {
MessageDigest digest = MessageDigest.getInstance("SHA-512");
byte[] hash = digest.digest(input.getBytes());
StringBuilder hexString = new StringBuilder();
for (byte b : hash) {
String hex = Integer.toHexString(0xff & b);
if (hex.length() == 1) {
hexString.append('0');
}
hexString.append(hex);
}
return hexString.toString();
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
return null;
}
}
}

@ -55,4 +55,8 @@ public class HighDangerBaseServiceImpl implements HighDangerService {
return sortedMap;
}
@Override
public Map<String, Double> saveRoadOrCross() {
return Collections.emptyMap();
}
}

@ -67,42 +67,49 @@
SELECT DISTINCT 'MonthReport' AS status,
SUM(CASE
WHEN TO_TIMESTAMP(hdb.pc_end_time, 'DD/MM/YYYY HH24:MI:SS') &gt;
DATE_TRUNC('MONTH', CURRENT_DATE THEN 1 ELSE 0 END) AS count
FROM tht_hidden_danger_base hdb
LEFT JOIN tht_hidden_danger_road hdr ON
hdb.business_id = hdr.business_id AND hdb.pc_count = hdr.pc_count
LEFT JOIN department dp ON hdb.handle_dept = dp.cdepartmentid
LEFT JOIN enum_type et ON et.ENUMTYPEID = '6601' AND et.enumvalue = hdb.status
WHERE hdb.handle_dept = #{cdepartmentid}
UNION ALL
SELECT DISTINCT 'Dying' AS status, SUM(CASE
WHEN
TO_TIMESTAMP(hdb.pc_end_time, 'DD/MM/YYYY HH24:MI:SS') &gt;
CURRENT_TIMESTAMP - INTERVAL '3 days'
and
TO_TIMESTAMP(hdb.pc_end_time, 'DD/MM/YYYY HH24:MI:SS') &lt;=
CURRENT_TIMESTAMP
THEN 1 ELSE 0 END) AS count
FROM tht_hidden_danger_base hdb
LEFT JOIN tht_hidden_danger_road hdr ON
hdb.business_id = hdr.business_id AND hdb.pc_count = hdr.pc_count
LEFT JOIN department dp ON hdb.handle_dept = dp.cdepartmentid
LEFT JOIN enum_type et ON et.ENUMTYPEID = '6601' AND et.enumvalue = hdb.status
WHERE hdb.handle_dept = #{cdepartmentid}
UNION ALL
SELECT DISTINCT 'Delay' AS status, SUM(CASE
WHEN
TO_TIMESTAMP(hdb.pc_end_time, 'DD/MM/YYYY HH24:MI:SS') &gt;
CURRENT_TIMESTAMP
THEN 1
ELSE 0 END) AS count
FROM tht_hidden_danger_base hdb
LEFT JOIN tht_hidden_danger_road hdr ON
hdb.business_id = hdr.business_id AND hdb.pc_count = hdr.pc_count
LEFT JOIN department dp ON hdb.handle_dept = dp.cdepartmentid
LEFT JOIN enum_type et ON et.ENUMTYPEID = '6601' AND et.enumvalue = hdb.status
WHERE hdb.handle_dept = #{cdepartmentid}
-- WHEN TO_TIMESTAMP(hdb.pc_end_time, 'DD/MM/YYYY HH24:MI:SS') &gt;
WHEN hdb.pc_end_time &gt;
DATE_TRUNC('MONTH', CURRENT_DATE) THEN 1
ELSE 0 END) AS count
FROM tht_hidden_danger_base hdb
LEFT JOIN tht_hidden_danger_road hdr
ON
hdb.business_id = hdr.business_id AND hdb.pc_count = hdr.pc_count
LEFT JOIN department dp ON hdb.handle_dept = dp.cdepartmentid
LEFT JOIN enum_type et ON et.ENUMTYPEID = '6601' AND et.enumvalue = hdb.status
WHERE hdb.handle_dept = #{cdepartmentid}
UNION ALL
SELECT DISTINCT 'Dying' AS status,
SUM(CASE
WHEN
hdb.pc_end_time &gt;
CURRENT_TIMESTAMP - INTERVAL '3 days'
and
hdb.pc_end_time &lt;=
CURRENT_TIMESTAMP
THEN 1 ELSE 0 END) AS count
FROM tht_hidden_danger_base hdb
LEFT JOIN tht_hidden_danger_road hdr
ON
hdb.business_id = hdr.business_id AND hdb.pc_count = hdr.pc_count
LEFT JOIN department dp ON hdb.handle_dept = dp.cdepartmentid
LEFT JOIN enum_type et ON et.ENUMTYPEID = '6601' AND et.enumvalue = hdb.status
WHERE hdb.handle_dept = #{cdepartmentid}
UNION ALL
SELECT DISTINCT 'Delay' AS status,
SUM(CASE
WHEN
hdb.pc_end_time &gt;
CURRENT_TIMESTAMP
THEN 1
ELSE 0 END) AS count
FROM tht_hidden_danger_base hdb
LEFT JOIN tht_hidden_danger_road hdr
ON
hdb.business_id = hdr.business_id AND hdb.pc_count = hdr.pc_count
LEFT JOIN department dp ON hdb.handle_dept = dp.cdepartmentid
LEFT JOIN enum_type et ON et.ENUMTYPEID = '6601' AND et.enumvalue = hdb.status
WHERE hdb.handle_dept = #{cdepartmentid}
</select>
<select id="getHigDangerDealt" resultType="com.hisense.hiatmp.model.common.HighDangerBase">
@ -168,12 +175,27 @@
where br.isactive = '1'
</select>
<select id="getRoadInfo" resultType="com.hisense.hiatmp.model.common.BisRoadDTO">
SELECT
*
FROM bis_road br
where br.isactive = '1'
<select id="getRoadInfo" resultType="com.hisense.hiatmp.base.model.BisRoadVO">
SELECT DISTINCT br.*,bs.section_name,bs.section_code
FROM bis_section bs
JOIN bis_road br ON bs.road_code = br.road_code
JOIN tht_hidden_danger_road thd ON bs.section_code = thd.section_code
WHERE thd.business_id = #{businessId};
</select>
<select id="getImportDanger" resultType="com.hisense.hiatmp.model.common.ImportDangerDTO">
SELECT *
from tht_hidden_scenes;
</select>
<select id="saveRoad" resultType="String">
insert into bis_section (section_code,section_name, up_crossing_code,down_crossing_code)
values (#{sectionCode},#{sectionName}, #{upCrossingCode}, #{downCrossingCode}) RETURNING bis_section.section_code;
</select>
<select id="saveCrossing" resultType="String">
insert into bis_crossing (crossing_code,crossing_name,longitude,latitude)
values (#{crossingCode},#{crossingName},#{longitude},#{latitude}) RETURNING bis_crossing.crossing_code;
</select>
</mapper>

@ -1,7 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.hisense.hiatmp.base.mapper.OperatorMapper">
<select id="getOperatorById" resultType="com.hisense.hiatmp.model.common.Operator">
@ -12,4 +11,8 @@
select * from operator;
</select>
<select id="updateByPrimaryKeySelective" resultType="String">
update operator set cuserpwd = #{cuserpwd} where nuserid = #{cuserid} RETURNING nuserid;
</select>
</mapper>

@ -21,12 +21,14 @@ com\hisense\hiatmp\base\service\HighDangerService.class
com\hisense\hiatmp\base\model\BindOperatorDTO.class
com\hisense\hiatmp\base\service\impl\HighDangerBaseServiceImpl.class
com\hisense\hiatmp\base\model\GpsDevice.class
com\hisense\hiatmp\base\service\impl\AuthServiceImpl.class
com\hisense\hiatmp\base\model\ModuleCustomConfig.class
com\hisense\hiatmp\base\controller\ConfigController.class
com\hisense\hiatmp\base\filter\JwtFilter.class
com\hisense\hiatmp\base\config\RedisConfig.class
com\hisense\hiatmp\base\config\FeignConfig.class
com\hisense\hiatmp\base\model\OperatorDTO.class
com\hisense\hiatmp\base\service\AuthService.class
com\hisense\hiatmp\base\controller\HighDangerController.class
com\hisense\hiatmp\base\jwt\JwtUtil.class
com\hisense\hiatmp\base\model\DistrictInfo.class

@ -9,6 +9,7 @@ D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\constant\CommonConstant.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\service\IMapQueryService.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\service\impl\ConfigServiceImpl.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\service\AuthService.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\config\FeignConfig.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\model\District.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\service\impl\HighDangerBaseServiceImpl.java
@ -33,6 +34,7 @@ D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\controller\ConfigController.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\config\SwaggerConfig.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\model\AreaQuery.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\service\impl\AuthServiceImpl.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\controller\HighDangerController.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\service\ICommonService.java
D:\DEV\Code\highDanger\urbantraffic-parent\hiatmp-base\src\main\java\com\hisense\hiatmp\base\model\GpsDevice.java

@ -0,0 +1,17 @@
package com.hisense.hiatmp.model.common;
import lombok.Data;
import java.io.Serializable;
@Data
public class CrossingDTO implements Serializable {
private static final long serialVersionUID = 1L;
private String crossingName;
private Float longitude;
private Float latitude;
// private String description;
}

@ -0,0 +1,17 @@
package com.hisense.hiatmp.model.common;
import lombok.Data;
import java.io.Serializable;
@Data
public class ImportDangerDTO implements Serializable {
private static final long serialVersionUID = 1L;
private String nid;
private String name;
private String measure;
private String description;
}

@ -0,0 +1,17 @@
package com.hisense.hiatmp.model.common;
import lombok.Data;
import java.io.Serializable;
@Data
public class SectionDTO implements Serializable {
private static final long serialVersionUID = 1L;
private String sectionName;
private String upCrossingCode;
private String downCrossingCode;
// private String description;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -1,50 +1,50 @@
2024-07-11 08:56:08,209 [main] INFO com.alibaba.boot.nacos.config.util.NacosConfigPropertiesUtils - nacosConfigProperties : NacosConfigProperties{serverAddr='127.0.0.1:8848', contextPath='null', encode='null', endpoint='null', namespace='null', accessKey='null', secretKey='null', ramRoleName='null', autoRefresh=false, dataId='null', dataIds='null', group='DEFAULT_GROUP', type=null, maxRetry='null', configLongPollTimeout='null', configRetryTime='null', enableRemoteSyncConfig=false, extConfig=[], bootstrap=Bootstrap{enable=false, logEnable=false}}
2024-07-11 08:56:08,213 [main] INFO com.alibaba.boot.nacos.config.autoconfigure.NacosConfigApplicationContextInitializer - [Nacos Config Boot] : The preload configuration is not enabled
2024-07-11 08:56:08,369 [main] INFO com.ulisesbocchio.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor - Post-processing PropertySource instances
2024-07-11 08:56:08,411 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2024-07-11 08:56:08,412 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:08,412 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:08,412 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:08,413 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2024-07-11 08:56:08,413 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:08,439 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2024-07-11 08:56:08,458 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2024-07-11 08:56:08,459 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2024-07-11 08:56:08,849 [main] INFO com.ulisesbocchio.jasyptspringboot.configuration.EnableEncryptablePropertiesConfiguration - Bootstraping jasypt-string-boot auto configuration in context: application-1
2024-07-11 08:56:08,849 [main] INFO com.alibaba.boot.nacos.config.util.NacosConfigPropertiesUtils - nacosConfigProperties : NacosConfigProperties{serverAddr='127.0.0.1:8848', contextPath='null', encode='null', endpoint='null', namespace='null', accessKey='null', secretKey='null', ramRoleName='null', autoRefresh=false, dataId='null', dataIds='null', group='DEFAULT_GROUP', type=null, maxRetry='null', configLongPollTimeout='null', configRetryTime='null', enableRemoteSyncConfig=false, extConfig=[], bootstrap=Bootstrap{enable=false, logEnable=false}}
2024-07-11 08:56:08,849 [main] INFO com.alibaba.boot.nacos.config.autoconfigure.NacosConfigApplicationContextInitializer - [Nacos Config Boot] : The preload configuration is not enabled
2024-07-11 08:56:08,850 [main] INFO com.hisense.hiatmp.base.BaseApplication - No active profile set, falling back to default profiles: default
2024-07-11 08:56:09,764 [main] INFO com.ulisesbocchio.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor - Post-processing PropertySource instances
2024-07-11 08:56:09,777 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2024-07-11 08:56:09,777 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2024-07-11 08:56:09,777 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2024-07-11 08:56:09,777 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:09,778 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:09,778 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2024-07-11 08:56:09,778 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:09,778 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:09,778 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:09,778 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource defaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 08:56:09,813 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2024-07-11 08:56:10,032 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2024-07-11 08:56:10,032 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2024-07-11 08:56:10,286 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-1959"]
2024-07-11 08:56:10,293 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2024-07-11 08:56:10,293 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.17]
2024-07-11 08:56:10,391 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/HiatmpPro/commond] - Initializing Spring embedded WebApplicationContext
2024-07-11 08:56:10,482 [main] INFO com.hisense.hiatmp.base.filter.JwtFilter - 过滤器执行
2024-07-11 08:56:10,483 [main] INFO com.hisense.hiatmp.base.filter.JwtFilter - 过滤器执行
2024-07-11 08:56:10,527 [main] INFO com.hisense.hiatmp.common.config.DataSourceConfig - 第一数据库连接池创建中.......
2024-07-11 08:56:11,614 [main] INFO springfox.documentation.spring.web.PropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2024-07-11 08:56:11,691 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2024-07-11 08:56:11,691 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2024-07-11 08:56:11,695 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2024-07-11 08:56:11,696 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2024-07-11 08:56:13,432 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper - Context refreshed
2024-07-11 08:56:13,445 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
2024-07-11 08:56:13,468 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner - Scanning for api listing references
2024-07-11 08:56:13,715 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-1959"]
2024-07-11 08:56:16,827 [main] ERROR com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, urbantraffic-hiatmp-base register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='10.16.3.178:8848', endpoint='', namespace='', watchDelay=30000, logName='', service='urbantraffic-hiatmp-base', weight=1.0, clusterName='DEFAULT', namingLoadCacheAtStart='false', metadata={preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.64.1', networkInterface='', port=1959, secure=false, accessKey='', secretKey=''}},
2024-07-11 16:37:45,474 [main] INFO com.alibaba.boot.nacos.config.util.NacosConfigPropertiesUtils - nacosConfigProperties : NacosConfigProperties{serverAddr='127.0.0.1:8848', contextPath='null', encode='null', endpoint='null', namespace='null', accessKey='null', secretKey='null', ramRoleName='null', autoRefresh=false, dataId='null', dataIds='null', group='DEFAULT_GROUP', type=null, maxRetry='null', configLongPollTimeout='null', configRetryTime='null', enableRemoteSyncConfig=false, extConfig=[], bootstrap=Bootstrap{enable=false, logEnable=false}}
2024-07-11 16:37:45,478 [main] INFO com.alibaba.boot.nacos.config.autoconfigure.NacosConfigApplicationContextInitializer - [Nacos Config Boot] : The preload configuration is not enabled
2024-07-11 16:37:45,656 [main] INFO com.ulisesbocchio.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor - Post-processing PropertySource instances
2024-07-11 16:37:45,694 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2024-07-11 16:37:45,694 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource bootstrap [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:45,695 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:45,695 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:45,695 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2024-07-11 16:37:45,696 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:45,720 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2024-07-11 16:37:45,740 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2024-07-11 16:37:45,741 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2024-07-11 16:37:46,108 [main] INFO com.ulisesbocchio.jasyptspringboot.configuration.EnableEncryptablePropertiesConfiguration - Bootstraping jasypt-string-boot auto configuration in context: application-1
2024-07-11 16:37:46,108 [main] INFO com.alibaba.boot.nacos.config.util.NacosConfigPropertiesUtils - nacosConfigProperties : NacosConfigProperties{serverAddr='127.0.0.1:8848', contextPath='null', encode='null', endpoint='null', namespace='null', accessKey='null', secretKey='null', ramRoleName='null', autoRefresh=false, dataId='null', dataIds='null', group='DEFAULT_GROUP', type=null, maxRetry='null', configLongPollTimeout='null', configRetryTime='null', enableRemoteSyncConfig=false, extConfig=[], bootstrap=Bootstrap{enable=false, logEnable=false}}
2024-07-11 16:37:46,108 [main] INFO com.alibaba.boot.nacos.config.autoconfigure.NacosConfigApplicationContextInitializer - [Nacos Config Boot] : The preload configuration is not enabled
2024-07-11 16:37:46,108 [main] INFO com.hisense.hiatmp.base.BaseApplication - No active profile set, falling back to default profiles: default
2024-07-11 16:37:47,002 [main] INFO com.ulisesbocchio.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor - Post-processing PropertySource instances
2024-07-11 16:37:47,016 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2024-07-11 16:37:47,016 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2024-07-11 16:37:47,016 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2024-07-11 16:37:47,016 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:47,016 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:47,017 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2024-07-11 16:37:47,017 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource applicationConfig: [classpath:/application.properties] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:47,017 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:47,017 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource springCloudClientHostInfo [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:47,017 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter - Converting PropertySource defaultProperties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper
2024-07-11 16:37:47,094 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2024-07-11 16:37:47,268 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2024-07-11 16:37:47,269 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2024-07-11 16:37:47,501 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-1959"]
2024-07-11 16:37:47,508 [main] INFO org.apache.catalina.core.StandardService - Starting service [Tomcat]
2024-07-11 16:37:47,508 [main] INFO org.apache.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.17]
2024-07-11 16:37:47,605 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/HiatmpPro/commond] - Initializing Spring embedded WebApplicationContext
2024-07-11 16:37:47,703 [main] INFO com.hisense.hiatmp.base.filter.JwtFilter - 过滤器执行
2024-07-11 16:37:47,703 [main] INFO com.hisense.hiatmp.base.filter.JwtFilter - 过滤器执行
2024-07-11 16:37:47,745 [main] INFO com.hisense.hiatmp.common.config.DataSourceConfig - 第一数据库连接池创建中.......
2024-07-11 16:37:48,896 [main] INFO springfox.documentation.spring.web.PropertySourcedRequestMappingHandlerMapping - Mapped URL path [/v2/api-docs] onto method [public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String,javax.servlet.http.HttpServletRequest)]
2024-07-11 16:37:48,945 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2024-07-11 16:37:48,945 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2024-07-11 16:37:48,949 [main] WARN com.netflix.config.sources.URLConfigurationSource - No URLs will be polled as dynamic configuration sources.
2024-07-11 16:37:48,949 [main] INFO com.netflix.config.sources.URLConfigurationSource - To enable URLs as dynamic configuration sources, define System property archaius.configurationSource.additionalUrls or make config.properties available on classpath.
2024-07-11 16:37:50,588 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper - Context refreshed
2024-07-11 16:37:50,608 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper - Found 1 custom documentation plugin(s)
2024-07-11 16:37:50,643 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner - Scanning for api listing references
2024-07-11 16:37:50,942 [main] INFO org.apache.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-1959"]
2024-07-11 16:37:54,061 [main] ERROR com.alibaba.cloud.nacos.registry.NacosServiceRegistry - nacos registry, urbantraffic-hiatmp-base register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='10.16.3.178:8848', endpoint='', namespace='', watchDelay=30000, logName='', service='urbantraffic-hiatmp-base', weight=1.0, clusterName='DEFAULT', namingLoadCacheAtStart='false', metadata={preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='192.168.64.1', networkInterface='', port=1959, secure=false, accessKey='', secretKey=''}},
java.lang.IllegalStateException: failed to req API:/nacos/v1/ns/instance after all servers([10.16.3.178:8848]) tried: failed to req API:10.16.3.178:8848/nacos/v1/ns/instance. code:500 msg: java.net.SocketTimeoutException: connect timed out
at com.alibaba.nacos.client.naming.net.NamingProxy.reqAPI(NamingProxy.java:464) ~[nacos-client-1.1.1.jar:?]
at com.alibaba.nacos.client.naming.net.NamingProxy.reqAPI(NamingProxy.java:386) ~[nacos-client-1.1.1.jar:?]
@ -72,10 +72,14 @@ java.lang.IllegalStateException: failed to req API:/nacos/v1/ns/instance after a
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1260) [spring-boot-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1248) [spring-boot-2.1.4.RELEASE.jar:2.1.4.RELEASE]
at com.hisense.hiatmp.base.BaseApplication.main(BaseApplication.java:25) [classes/:?]
2024-07-11 08:56:16,831 [main] INFO com.hisense.hiatmp.base.BaseApplication - Started BaseApplication in 9.157 seconds (JVM running for 10.259)
2024-07-11 08:56:16,834 [main] INFO com.hisense.hiatmp.common.encrypt.EncryptedDetector - ==============配置项自动加密已触发============
2024-07-11 08:56:16,834 [main] INFO com.hisense.hiatmp.common.encrypt.EncryptedDetector - ==============配置项自动加密已结束,未用脚本启动或者yml参数未配置正确,加密失败!============
2024-07-11 08:56:30,600 [http-nio-1959-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/HiatmpPro/commond] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-11 08:56:30,849 [http-nio-1959-exec-1] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
2024-07-11 08:56:31,134 [http-nio-1959-exec-1] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
2024-07-11 08:56:31,205 [http-nio-1959-exec-1] INFO com.hisense.hiatmp.base.controller.AuthController - 登录成功!生成token!
2024-07-11 16:37:54,066 [main] INFO com.hisense.hiatmp.base.BaseApplication - Started BaseApplication in 9.181 seconds (JVM running for 10.331)
2024-07-11 16:37:54,068 [main] INFO com.hisense.hiatmp.common.encrypt.EncryptedDetector - ==============配置项自动加密已触发============
2024-07-11 16:37:54,069 [main] INFO com.hisense.hiatmp.common.encrypt.EncryptedDetector - ==============配置项自动加密已结束,未用脚本启动或者yml参数未配置正确,加密失败!============
2024-07-11 16:38:28,601 [http-nio-1959-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/HiatmpPro/commond] - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-11 16:38:29,268 [http-nio-1959-exec-1] ERROR com.hisense.hiatmp.base.jwt.JwtUtil - The Token has expired on Thu Jul 11 16:36:27 CST 2024.
2024-07-11 16:38:29,268 [http-nio-1959-exec-1] ERROR com.hisense.hiatmp.base.jwt.JwtUtil - token解码异常
2024-07-11 16:38:32,942 [http-nio-1959-exec-8] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...
2024-07-11 16:38:33,229 [http-nio-1959-exec-8] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.
2024-07-11 16:38:33,309 [http-nio-1959-exec-8] INFO com.hisense.hiatmp.base.controller.AuthController - 登录成功!生成token!
2024-07-11 16:40:10,457 [http-nio-1959-exec-5] ERROR com.hisense.hiatmp.base.jwt.JwtUtil - The Token has expired on Thu Jul 11 15:45:44 CST 2024.
2024-07-11 16:40:10,457 [http-nio-1959-exec-5] ERROR com.hisense.hiatmp.base.jwt.JwtUtil - token解码异常

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save