Commit a7d5b2f3 authored by ma's avatar ma

Revert "撤销merge"

This reverts commit ff60f483
parent ff60f483
# -------------------- 平台应用相关,以pms开头 --------------------
DROP TABLE IF EXISTS `pms_use_log`;
CREATE TABLE `pms_use_log`
(
`id` int(10) NOT NULL AUTO_INCREMENT,
`sn` varchar(30) DEFAULT NULL COMMENT '设备编号',
`status` int(1) DEFAULT '1' COMMENT '状态 1:成功,0:失败',
`error_code` varchar(10) DEFAULT NULL COMMENT '如果失败,则这是失败的代号',
`message` varchar(200) DEFAULT NULL COMMENT '如果失败,则这里是失败的信息',
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
`deleted` int(1) DEFAULT '0' COMMENT '逻辑删除标识 1:删除,0:未删除',
PRIMARY KEY (`id`)
) ENGINE = InnoDB
AUTO_INCREMENT = 0
DEFAULT CHARSET = utf8 COMMENT ='使用记录表';
ALTER TABLE `device`
ADD COLUMN `status` int(1) NULL DEFAULT NULL COMMENT '状态 0:未使用,1:已使用,2:失效' AFTER `app_id`;
ALTER TABLE `device`
ADD COLUMN `sn_bind` varchar(30) NULL DEFAULT NULL COMMENT '绑定的SN' AFTER `status`;
\ No newline at end of file
package iot.sixiang.license.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import iot.sixiang.license.entity.PmsUseLog;
import iot.sixiang.license.entity.SysOperLog;
import iot.sixiang.license.log.BusinessType;
import iot.sixiang.license.log.MyLog;
import iot.sixiang.license.model.PageInfoModel;
import iot.sixiang.license.model.PageResult;
import iot.sixiang.license.model.vo.DeviceVo;
import iot.sixiang.license.service.PmsUseService;
import iot.sixiang.license.service.SysOperLogService;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.Date;
import java.util.List;
@Slf4j
@RestController
@RequestMapping("/iot_license/pms_use_log")
@Api(value = "使用记录模块", tags = {"使用记录模块"})
public class PmsUseLogController {
@Autowired
private PmsUseService pmsUseService;
/**
* 分页查询使用记录
*
* @param pageNo
* @param pageSize
* @return
*/
@ApiOperation(value = "获取使用记录列表接口", notes = "用于获取使用记录列表")
@GetMapping("list")
@MyLog(title = "获取使用记录列表", optParam = "#{pageNo},#{pageSize},#{sn},#{status}", businessType = BusinessType.SELECT)
@ApiImplicitParams({
@ApiImplicitParam(name = "pageNo", value = "当前在第几页", required = true, dataType = "int"),
@ApiImplicitParam(name = "pageSize", value = "每页显示多少条", required = true, dataType = "int"),
@ApiImplicitParam(name = "sn", value = "设备编号"),
@ApiImplicitParam(name = "status", value = "状态 1:成功,0:失败", dataType = "int")
})
public PageResult<PmsUseLog> getPmsUseLogList(@RequestParam(value = "pageNo", defaultValue = "0") int pageNo,
@RequestParam(value = "pageSize", defaultValue = "0") int pageSize,
@RequestParam(value = "sn", required = false) String sn,
@RequestParam(value = "status", required = false) Integer status) {
PageInfoModel<PmsUseLog> records = pmsUseService.getPmsUseLogList(pageNo, pageSize, sn, status);
int total = records.getTotal();
int pages = total / pageSize;//pages为总页数
int mod = total % pageSize;
if (mod != 0) {
pages = pages + 1;
}
List<PmsUseLog> result = records.getResult();
return new PageResult(200, "查找成功", pageNo, pages, total, result);
}
}
package iot.sixiang.license.controller;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import iot.sixiang.license.model.BaseResult;
import iot.sixiang.license.model.ResResult;
import iot.sixiang.license.model.dto.GetTerminalDeviceTokenDTO;
import iot.sixiang.license.model.dto.ReportErrorMsgDTO;
import iot.sixiang.license.model.dto.TerminalDevieBindDTO;
import iot.sixiang.license.model.dto.TerminalDevieUnBindDTO;
import iot.sixiang.license.service.TerminalDeviceService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
@RestController
@RequestMapping("/iot_license/terminal_device")
@Api(value = "终端设备模块", tags = {"终端设备模块"})
public class TerminalDeviceController {
@Autowired
TerminalDeviceService terminalDeviceService;
@GetMapping("/get_token")
@ApiOperation(value = "终端设备获取token", notes = "终端设备获取token")
public ResResult getToken(GetTerminalDeviceTokenDTO getTerminalDeviceTokenDTO) {
return terminalDeviceService.getToken(getTerminalDeviceTokenDTO);
}
@PostMapping("/report_error_msg")
@ApiOperation(value = "终端设备上报错误信息", notes = "终端设备上报错误信息")
public BaseResult reportErrorMsg(@RequestBody List<ReportErrorMsgDTO> reportErrorMsgDTO) {
return terminalDeviceService.reportErrorMsg(reportErrorMsgDTO);
}
@PostMapping("/bind")
@ApiOperation(value = "终端设备绑定接口", notes = "终端设备绑定接口")
public BaseResult terminalDevieBind(@RequestBody TerminalDevieBindDTO terminalDevieBindDTO) {
return terminalDeviceService.terminalDeviceBind(terminalDevieBindDTO);
}
@PostMapping("/unbind")
@ApiOperation(value = "终端设备解绑接口", notes = "终端设备解绑接口")
public BaseResult terminalDevieunBind(@RequestBody TerminalDevieUnBindDTO terminalDevieUnBindDTO) {
return terminalDeviceService.terminalDeviceunBind(terminalDevieUnBindDTO);
}
@GetMapping("/get_bind_status")
@ApiOperation(value = "获取终端设备绑定状态接口", notes = "获取终端设备绑定状态接口")
public ResResult getBindStatus(TerminalDevieUnBindDTO terminalDevieUnBindDTO) {
return terminalDeviceService.getBindStatus(terminalDevieUnBindDTO);
}
}
package iot.sixiang.license.entity;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import java.util.Date;
/**
* Created by M=54G
* Date 11/23/22 3:12 PM
* Description
*/
@Data
public class PmsUseLog {
@ApiModelProperty("记录标识")
@TableId(type = IdType.AUTO)
private Integer id;
@ApiModelProperty("设备编号")
private String sn;
@ApiModelProperty("状态 1:成功,0:失败")
private Integer status;
@ApiModelProperty("如果失败,则这是失败的代号")
private String errorCode;
@ApiModelProperty("如果失败,则这里是失败的信息")
private String message;
@ApiModelProperty("创建时间")
private Date createTime;
@ApiModelProperty("更新时间")
private Date updateTime;
@ApiModelProperty("逻辑删除标识 1:删除,0:未删除")
private Integer deleted;
}
package iot.sixiang.license.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import iot.sixiang.license.entity.PmsUseLog;
import iot.sixiang.license.model.vo.DeviceVo;
import java.util.List;
/**
* Created by M=54G
* Date 11/23/22 3:12 PM
* Description
*/
public interface PmsUseLogMapper extends BaseMapper<PmsUseLog> {
List<PmsUseLog> getPmsUseLogList(String sn, Integer status);
}
package iot.sixiang.license.model.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class GetTerminalDeviceTokenDTO {
@ApiModelProperty("应用id")
private String appId;
@ApiModelProperty("设备编号")
private String sn;
@ApiModelProperty("签名")
private String sign;
}
package iot.sixiang.license.model.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class ReportErrorMsgDTO {
@ApiModelProperty("错误标识id")
private Integer id;
@ApiModelProperty("错误码")
private String errorCode;
@ApiModelProperty("错误信息")
private String errorMsg;
}
package iot.sixiang.license.model.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class TerminalDevieBindDTO {
@ApiModelProperty("设备编码")
private String sn;
@ApiModelProperty("绑定的SN")
private String snBind;
}
package iot.sixiang.license.model.dto;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class TerminalDevieUnBindDTO {
@ApiModelProperty("设备SN")
private String snBind;
}
package iot.sixiang.license.service;
import iot.sixiang.license.entity.PmsUseLog;
import iot.sixiang.license.model.PageInfoModel;
import iot.sixiang.license.model.dto.ReportErrorMsgDTO;
/**
* Created by M=54G
* Date 11/23/22 3:09 PM
* Description
*/
public interface PmsUseService {
int createUseLog(String sn);
void createFailUseLog(String sn, String message);
void success(int useLogId);
PageInfoModel<PmsUseLog> getPmsUseLogList(int pageNo, int pageSize, String sn, Integer status);
boolean reportErrorMsg(ReportErrorMsgDTO reportErrorMsgDTO);
boolean deletePmsUseLogById(Integer id);
}
package iot.sixiang.license.service;
import iot.sixiang.license.model.BaseResult;
import iot.sixiang.license.model.ResResult;
import iot.sixiang.license.model.dto.GetTerminalDeviceTokenDTO;
import iot.sixiang.license.model.dto.ReportErrorMsgDTO;
import iot.sixiang.license.model.dto.TerminalDevieBindDTO;
import iot.sixiang.license.model.dto.TerminalDevieUnBindDTO;
import java.util.List;
public interface TerminalDeviceService {
ResResult getToken(GetTerminalDeviceTokenDTO getTerminalDeviceTokenDTO);
BaseResult reportErrorMsg(List<ReportErrorMsgDTO> reportErrorMsgDTO);
BaseResult terminalDeviceBind(TerminalDevieBindDTO terminalDevieBindDTO);
BaseResult terminalDeviceunBind(TerminalDevieUnBindDTO terminalDevieUnBindDTO);
ResResult getBindStatus(TerminalDevieUnBindDTO terminalDevieUnBindDTO);
}
package iot.sixiang.license.service.impl;
import iot.sixiang.license.consts.ResultCode;
import iot.sixiang.license.entity.PmsUseLog;
import iot.sixiang.license.handler.IotLicenseException;
import iot.sixiang.license.mapper.PmsUseLogMapper;
import iot.sixiang.license.model.PageInfoModel;
import iot.sixiang.license.model.dto.ReportErrorMsgDTO;
import iot.sixiang.license.service.PmsUseService;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.stream.Collectors;
/**
* Created by M=54G
* Date 11/23/22 3:10 PM
* Description
*/
@Service
public class PmsUseServiceImpl implements PmsUseService {
@Resource
private PmsUseLogMapper pmsUseLogMapper;
@Override
public int createUseLog(String sn) {
PmsUseLog pmsUseLog = getPmsUseLog(sn);
pmsUseLogMapper.insert(pmsUseLog);
return pmsUseLog.getId();
}
@Override
public void createFailUseLog(String sn, String message) {
PmsUseLog pmsUseLog = getPmsUseLog(sn);
pmsUseLog.setStatus(0);
pmsUseLog.setMessage(message);
pmsUseLogMapper.insert(pmsUseLog);
}
@Override
public void success(int useLogId) {
PmsUseLog pmsUseLog = new PmsUseLog();
pmsUseLog.setId(useLogId);
pmsUseLog.setStatus(1);
pmsUseLogMapper.updateById(pmsUseLog);
}
@Override
public PageInfoModel<PmsUseLog> getPmsUseLogList(int pageNo, int pageSize, String sn, Integer status) {
if (pageNo == 0 || pageSize == 0) {
throw new IotLicenseException(ResultCode.VALIDATE_FAILED.getCode(), ResultCode.VALIDATE_FAILED.getMsg());
}
List<PmsUseLog> pmsUseLogs = pmsUseLogMapper.getPmsUseLogList(sn, status);
List<PmsUseLog> result = new ArrayList<>();
int begin = (pageNo - 1) * pageSize;
if (begin >= 0 && pmsUseLogs.size() > 0) {
result = pmsUseLogs.stream().skip(begin).limit(pageSize).collect(Collectors.toList());
}
PageInfoModel<PmsUseLog> pmsUseLogPageInfoModel = new PageInfoModel<>();
pmsUseLogPageInfoModel.setTotal(pmsUseLogs.size());
pmsUseLogPageInfoModel.setResult(result);
return pmsUseLogPageInfoModel;
}
@Override
public boolean reportErrorMsg(ReportErrorMsgDTO reportErrorMsgDTO) {
Integer id = reportErrorMsgDTO.getId();
String errorCode = reportErrorMsgDTO.getErrorCode();
String errorMsg = reportErrorMsgDTO.getErrorMsg();
PmsUseLog pmsUseLog = new PmsUseLog();
pmsUseLog.setId(id);
pmsUseLog.setStatus(0);
pmsUseLog.setErrorCode(errorCode);
pmsUseLog.setMessage(errorMsg);
pmsUseLog.setUpdateTime(new Date());
int res = pmsUseLogMapper.updateById(pmsUseLog);
return res > 0;
}
@Override
public boolean deletePmsUseLogById(Integer id) {
PmsUseLog pmsUseLog = new PmsUseLog();
pmsUseLog.setId(id);
pmsUseLog.setStatus(0);
pmsUseLog.setUpdateTime(new Date());
pmsUseLog.setDeleted(1);
int res = pmsUseLogMapper.updateById(pmsUseLog);
return res > 0;
}
private PmsUseLog getPmsUseLog(String sn) {
PmsUseLog pmsUseLog = new PmsUseLog();
Date date = new Date();
pmsUseLog.setCreateTime(date);
pmsUseLog.setUpdateTime(date);
pmsUseLog.setSn(sn);
return pmsUseLog;
}
}
package iot.sixiang.license.service.impl;
import iot.sixiang.license.auth.AuthManager;
import iot.sixiang.license.device.DeviceManager;
import iot.sixiang.license.handler.IotLicenseException;
import iot.sixiang.license.jwt.JwtUtil;
import iot.sixiang.license.jwt.LoginUser;
import iot.sixiang.license.model.BaseResult;
import iot.sixiang.license.model.ResResult;
import iot.sixiang.license.model.dto.GetTerminalDeviceTokenDTO;
import iot.sixiang.license.model.dto.ReportErrorMsgDTO;
import iot.sixiang.license.model.dto.TerminalDevieBindDTO;
import iot.sixiang.license.model.dto.TerminalDevieUnBindDTO;
import iot.sixiang.license.service.DeviceService;
import iot.sixiang.license.service.PmsUseService;
import iot.sixiang.license.service.TerminalDeviceService;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import javax.annotation.Resource;
import java.util.Comparator;
import java.util.List;
@Slf4j
@Service
public class TerminalDeviceServiceImpl implements TerminalDeviceService {
@Autowired
private AuthManager authManager;
@Autowired
private DeviceService deviceService;
@Autowired
private PmsUseService pmsUseService;
@Resource
private DeviceManager deviceManager;
@Override
public ResResult getToken(GetTerminalDeviceTokenDTO getTerminalDeviceTokenDTO) {
String appId = getTerminalDeviceTokenDTO.getAppId();
String sn = getTerminalDeviceTokenDTO.getSn();
String sign = getTerminalDeviceTokenDTO.getSign();
if (StringUtils.isEmpty(appId)) {
throw new IotLicenseException(403, "应用id不能为空");
}
if (StringUtils.isEmpty(sn)) {
throw new IotLicenseException(403, "终端编号不能为空");
}
if (StringUtils.isEmpty(sign)) {
throw new IotLicenseException(403, "签名不能为空");
}
boolean authResult = authManager.authTerminalDevice(appId, sn, sign);
if (authResult) {
LoginUser user = new LoginUser();
user.setUserId(appId);
user.setUserName(sn);
String token = JwtUtil.createToken(user);
return ResResult.success().record(token);
} else {
return ResResult.validate_failed();
}
}
@Override
public BaseResult reportErrorMsg(List<ReportErrorMsgDTO> reportErrorMsgDTOs) {
if (reportErrorMsgDTOs == null || reportErrorMsgDTOs.size() == 0) {
return BaseResult.validate_failed();
}
reportErrorMsgDTOs.sort(Comparator.comparingInt(ReportErrorMsgDTO::getId));
for (int i = 0; i < reportErrorMsgDTOs.size() - 1; i++) {
ReportErrorMsgDTO reportErrorMsgDTO = reportErrorMsgDTOs.get(i);
Integer id = reportErrorMsgDTO.getId();
if (id == null || id == 0) {
return BaseResult.validate_failed();
}
pmsUseService.deletePmsUseLogById(id);
}
ReportErrorMsgDTO reportErrorMsgDTO = reportErrorMsgDTOs.get(reportErrorMsgDTOs.size() - 1);
if (reportErrorMsgDTO.getId() == null || reportErrorMsgDTO.getId() == 0 || reportErrorMsgDTO.getErrorCode() == null) {
return BaseResult.validate_failed();
} else {
if ("0".equals(reportErrorMsgDTO.getErrorCode())) {
pmsUseService.success(reportErrorMsgDTO.getId());
return BaseResult.success();
} else {
boolean res = pmsUseService.reportErrorMsg(reportErrorMsgDTO);
if (res) {
return BaseResult.success();
} else {
return BaseResult.failed();
}
}
}
}
@Override
public BaseResult terminalDeviceBind(TerminalDevieBindDTO terminalDevieBindDTO) {
String sn = terminalDevieBindDTO.getSn();
String snBind = terminalDevieBindDTO.getSnBind();
if (StringUtils.isEmpty(sn) || StringUtils.isEmpty(snBind)) {
return BaseResult.validate_failed();
}
Boolean res = deviceService.terminalDevieBind(terminalDevieBindDTO);
if (res) {
deviceManager.initDevices();
return BaseResult.success();
} else {
return BaseResult.failed();
}
}
@Override
public BaseResult terminalDeviceunBind(TerminalDevieUnBindDTO terminalDevieUnBindDTO) {
String snBind = terminalDevieUnBindDTO.getSnBind();
if (StringUtils.isEmpty(snBind)) {
return BaseResult.validate_failed();
}
Boolean res = deviceService.terminalDevieunBind(terminalDevieUnBindDTO);
if (res) {
deviceManager.initDevices();
return BaseResult.success();
} else {
return BaseResult.failed();
}
}
@Override
public ResResult getBindStatus(TerminalDevieUnBindDTO terminalDevieUnBindDTO) {
String snBind = terminalDevieUnBindDTO.getSnBind();
if (StringUtils.isEmpty(snBind)) {
return ResResult.validate_failed();
}
return deviceService.getBindStatus(terminalDevieUnBindDTO);
}
}
server:
port: 8868
spring:
datasource:
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://8.134.112.146:3306/iot_license?serverTimezone=GMT%2B8
username: root
password: 1808030428mzh
main:
allow-bean-definition-overriding: true
mybatis-plus:
mapper-locations: classpath:/mapper/**.xml
type-aliases-package: iot.sixiang.license.entity
knife4j:
enable: true
logging:
level:
root: info
\ No newline at end of file
<?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="iot.sixiang.license.mapper.PmsUseLogMapper">
<select id="getPmsUseLogList" resultType="iot.sixiang.license.entity.PmsUseLog">
SELECT * FROM pms_use_log
where 1=1
<if test="null != sn and '' != sn">
and sn like concat('%',#{sn},'%')
</if>
<if test="null != status">
and status = #{status}
</if>
and deleted = 0
order by create_time desc
</select>
</mapper>
\ No newline at end of file
package iot.sixiang.license;
import com.alibaba.fastjson.JSON;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
/**
* Created by M=54G
* Date 9/14/22 3:08 PM
* Description
*/
@SpringBootTest
@ActiveProfiles({"test-acc"})
@Slf4j
public class BaseTest {
protected void log(Object object) {
log.info(JSON.toJSONString(object));
}
}
\ No newline at end of file
package iot.sixiang.license.service;
import iot.sixiang.license.BaseTest;
import org.junit.jupiter.api.Test;
import javax.annotation.Resource;
/**
* Created by M=54G
* Date 11/23/22 3:39 PM
* Description
*/
public class PmsUseServiceTest extends BaseTest {
@Resource
private PmsUseService pmsUseService;
@Test
void addLog() {
log(pmsUseService.createUseLog("abcd"));
}
@Test
void updateLog() {
pmsUseService.success(1);
}
}
\ No newline at end of file
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
2022-08-04 09:19:01.873 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 1968 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 09:19:01.877 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: test
2022-08-04 09:19:04.176 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 09:19:04.184 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 09:19:04.185 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 09:19:04.186 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 09:19:04.187 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 09:19:04.187 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 09:19:04.188 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 09:19:04.199 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 09:19:04.299 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 09:19:04.299 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2346 ms
2022-08-04 09:19:04.331 [main] INFO org.springframework.boot.web.servlet.RegistrationBean:110 - Filter xssFilter was not registered (possibly already registered?)
2022-08-04 09:19:04.345 [main] INFO iot.sixiang.license.xss.XssFilter:29 - ==============> 进入init XssFilter
2022-08-04 09:19:04.347 [main] INFO iot.sixiang.license.jwt.JwtFilter:27 - -------------JwtFilter-init---------------
2022-08-04 09:19:04.544 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 09:19:05.007 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 09:19:06.278 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 09:19:06.372 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 09:19:06.483 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 09:19:06.524 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 09:19:06.526 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 09:19:06.553 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 09:19:06.810 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 09:19:06.821 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 09:19:06.824 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.537 seconds (JVM running for 6.545)
2022-08-04 17:42:30.135 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 3548 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 17:42:30.139 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: test
2022-08-04 17:42:32.486 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 17:42:32.496 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 17:42:32.497 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 17:42:32.497 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 17:42:32.499 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 17:42:32.499 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 17:42:32.500 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 17:42:32.511 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 17:42:32.613 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 17:42:32.614 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2424 ms
2022-08-04 17:42:32.658 [main] INFO org.springframework.boot.web.servlet.RegistrationBean:110 - Filter xssFilter was not registered (possibly already registered?)
2022-08-04 17:42:32.678 [main] INFO iot.sixiang.license.xss.XssFilter:29 - ==============> 进入init XssFilter
2022-08-04 17:42:32.680 [main] INFO iot.sixiang.license.jwt.JwtFilter:27 - -------------JwtFilter-init---------------
2022-08-04 17:42:32.981 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 17:42:33.451 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 17:42:34.876 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 17:42:34.985 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 17:42:35.109 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 17:42:35.159 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 17:42:35.162 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 17:42:35.192 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 17:42:35.478 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 17:42:35.493 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 17:42:35.496 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 6.404 seconds (JVM running for 7.449)
2022-08-04 18:39:05.131 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2022-08-04 18:39:05.138 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:350 - HikariPool-1 - Shutdown initiated...
2022-08-04 18:39:05.142 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:352 - HikariPool-1 - Shutdown completed.
2022-08-04 18:39:05.274 [SpringContextShutdownHook] INFO iot.sixiang.license.xss.XssFilter:45 - ==============> destroy XssFilter
2022-08-04 18:39:05.274 [SpringContextShutdownHook] INFO iot.sixiang.license.jwt.JwtFilter:87 - -------------JwtFilter-destroy---------------
2022-08-04 18:39:16.360 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 10432 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 18:39:16.361 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 18:39:18.317 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 18:39:18.342 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 18:39:18.343 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:39:18.344 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:39:18.346 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:39:18.346 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 18:39:18.347 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:39:18.347 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:39:18.347 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:39:18.446 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 18:39:18.899 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 18:39:18.910 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 18:39:18.912 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 18:39:18.913 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 18:39:18.919 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 18:39:18.919 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 18:39:18.919 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 18:39:18.923 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 18:39:19.047 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 18:39:19.047 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2594 ms
2022-08-04 18:39:19.103 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 18:39:19.104 [main] INFO iot.sixiang.license.jwt.JwtFilter:28 - -------------JwtFilter-init---------------
2022-08-04 18:39:19.473 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 18:39:19.476 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 18:39:19.506 [main] INFO com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor:37 - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2022-08-04 18:39:19.517 [main] INFO org.apache.catalina.core.StandardService:173 - Stopping service [Tomcat]
2022-08-04 18:39:19.524 [main] INFO iot.sixiang.license.xss.XssFilter:48 - ==============> destroy XssFilter
2022-08-04 18:39:19.525 [main] INFO iot.sixiang.license.jwt.JwtFilter:90 - -------------JwtFilter-destroy---------------
2022-08-04 18:43:22.982 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 14372 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 18:43:23.019 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 18:43:23.972 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 18:43:23.992 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 18:43:23.993 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:43:23.993 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:43:23.994 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:43:23.994 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 18:43:23.994 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:43:23.995 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:43:23.995 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:43:24.088 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 18:43:24.484 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 18:43:24.492 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 18:43:24.494 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 18:43:24.494 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 18:43:24.497 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 18:43:24.497 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 18:43:24.497 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 18:43:24.499 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 18:43:24.599 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 18:43:24.599 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1531 ms
2022-08-04 18:43:24.651 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 18:43:24.652 [main] INFO iot.sixiang.license.jwt.JwtFilter:28 - -------------JwtFilter-init---------------
2022-08-04 18:43:24.798 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 18:43:24.801 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 18:43:24.906 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 18:43:25.507 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 18:43:26.175 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 18:43:26.176 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 18:43:26.918 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 18:43:27.029 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 18:43:27.177 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 18:43:27.247 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 18:43:27.253 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 18:43:27.296 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 18:43:27.636 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 18:43:27.820 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 18:43:27.832 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 18:43:27.835 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.373 seconds (JVM running for 6.077)
2022-08-04 18:43:32.461 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 18:43:32.461 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 18:43:32.471 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 10 ms
2022-08-04 18:43:43.806 [http-nio-8868-exec-10] INFO iot.sixiang.license.controller.LoginController:52 - 登录成功!生成token!
2022-08-04 18:51:29.923 [http-nio-8868-exec-8] INFO iot.sixiang.license.controller.LoginController:52 - 登录成功!生成token!
2022-08-04 18:54:02.867 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 8144 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 18:54:02.868 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 18:54:03.897 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 18:54:03.917 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 18:54:03.918 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:54:03.918 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:54:03.919 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:54:03.919 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 18:54:03.919 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:54:03.919 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:54:03.919 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:54:04.013 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 18:54:04.437 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 18:54:04.446 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 18:54:04.448 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 18:54:04.448 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 18:54:04.451 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 18:54:04.451 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 18:54:04.451 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 18:54:04.454 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 18:54:04.560 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 18:54:04.560 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1636 ms
2022-08-04 18:54:04.616 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 18:54:04.618 [main] INFO iot.sixiang.license.jwt.JwtFilter:26 - -------------JwtFilter-init---------------
2022-08-04 18:54:04.752 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 18:54:04.754 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 18:54:04.855 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 18:54:05.247 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 18:54:05.797 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 18:54:05.799 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 18:54:06.392 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 18:54:06.497 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 18:54:06.631 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 18:54:06.678 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 18:54:06.680 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 18:54:06.709 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 18:54:07.011 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 18:54:07.241 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 18:54:07.260 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 18:54:07.265 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 4.976 seconds (JVM running for 5.739)
2022-08-04 18:54:41.872 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 18:54:41.873 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 18:54:41.887 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 14 ms
2022-08-04 18:57:28.982 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 14552 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 18:57:28.983 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 18:57:30.219 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 18:57:30.245 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 18:57:30.247 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:57:30.247 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:57:30.247 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:57:30.248 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 18:57:30.248 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 18:57:30.248 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:57:30.248 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 18:57:30.376 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 18:57:30.827 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 18:57:30.837 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 18:57:30.839 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 18:57:30.839 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 18:57:30.844 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 18:57:30.844 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 18:57:30.844 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 18:57:30.848 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 18:57:30.968 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 18:57:30.968 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1934 ms
2022-08-04 18:57:31.116 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 18:57:31.117 [main] INFO iot.sixiang.license.jwt.JwtFilter:26 - -------------JwtFilter-init---------------
2022-08-04 18:57:31.224 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 18:57:31.227 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 18:57:31.353 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 18:57:31.782 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 18:57:32.484 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 18:57:32.485 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 18:57:33.208 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 18:57:33.338 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 18:57:33.496 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 18:57:33.550 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 18:57:33.553 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 18:57:33.591 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 18:57:33.895 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 18:57:34.081 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 18:57:34.097 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 18:57:34.101 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.944 seconds (JVM running for 7.767)
2022-08-04 18:58:52.066 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 18:58:52.066 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 18:58:52.081 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 15 ms
2022-08-04 19:00:00.758 [nioEventLoopGroup-6-3] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-04 19:00:00.758 [nioEventLoopGroup-6-2] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-04 19:00:00.758 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-04 19:00:00.782 [http-nio-8868-exec-7] INFO iot.sixiang.license.controller.LoginController:52 - 登录成功!生成token!
2022-08-04 19:07:37.937 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2022-08-04 19:07:37.939 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:218 - Shutting down ExecutorService 'taskExecutor'
2022-08-04 19:07:37.940 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:350 - HikariPool-1 - Shutdown initiated...
2022-08-04 19:07:37.956 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:352 - HikariPool-1 - Shutdown completed.
2022-08-04 19:07:38.083 [SpringContextShutdownHook] INFO iot.sixiang.license.xss.XssFilter:48 - ==============> destroy XssFilter
2022-08-04 19:07:38.084 [SpringContextShutdownHook] INFO iot.sixiang.license.jwt.JwtFilter:88 - -------------JwtFilter-destroy---------------
2022-08-04 19:07:42.433 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 7300 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 19:07:42.435 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 19:07:43.764 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 19:07:43.793 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 19:07:43.795 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:07:43.795 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:07:43.796 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:07:43.797 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 19:07:43.798 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:07:43.798 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:07:43.798 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:07:43.925 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 19:07:44.451 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 19:07:44.465 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 19:07:44.467 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 19:07:44.467 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 19:07:44.471 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 19:07:44.471 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 19:07:44.471 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 19:07:44.477 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 19:07:44.615 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 19:07:44.616 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2114 ms
2022-08-04 19:07:44.711 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 19:07:44.712 [main] INFO iot.sixiang.license.jwt.JwtFilter:26 - -------------JwtFilter-init---------------
2022-08-04 19:07:44.884 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 19:07:44.886 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 19:07:45.017 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 19:07:45.530 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 19:07:46.192 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 19:07:46.195 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 19:07:46.893 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 19:07:47.015 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 19:07:47.173 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 19:07:47.221 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 19:07:47.224 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 19:07:47.286 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 19:07:47.637 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 19:07:47.813 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 19:07:47.828 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 19:07:47.832 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 6.287 seconds (JVM running for 7.184)
2022-08-04 19:07:54.677 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 19:07:54.678 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 19:07:54.689 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 11 ms
2022-08-04 19:18:27.974 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2022-08-04 19:18:27.978 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:218 - Shutting down ExecutorService 'taskExecutor'
2022-08-04 19:18:27.979 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:350 - HikariPool-1 - Shutdown initiated...
2022-08-04 19:18:27.998 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:352 - HikariPool-1 - Shutdown completed.
2022-08-04 19:18:28.125 [SpringContextShutdownHook] INFO iot.sixiang.license.xss.XssFilter:48 - ==============> destroy XssFilter
2022-08-04 19:18:28.125 [SpringContextShutdownHook] INFO iot.sixiang.license.jwt.JwtFilter:88 - -------------JwtFilter-destroy---------------
2022-08-04 19:18:32.479 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 16320 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 19:18:32.480 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 19:18:33.447 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 19:18:33.467 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 19:18:33.468 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:18:33.468 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:18:33.468 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:18:33.469 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 19:18:33.469 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:18:33.469 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:18:33.469 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:18:33.564 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 19:18:33.782 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 19:18:33.785 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 19:18:33.966 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 19:18:33.974 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 19:18:33.976 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 19:18:33.976 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 19:18:33.979 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 19:18:33.979 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 19:18:33.980 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 19:18:33.982 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 19:18:34.079 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 19:18:34.080 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1553 ms
2022-08-04 19:18:34.132 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 19:18:34.133 [main] INFO iot.sixiang.license.jwt.JwtFilter:26 - -------------JwtFilter-init---------------
2022-08-04 19:18:34.365 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 19:18:34.745 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 19:18:35.284 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 19:18:35.286 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 19:18:36.036 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 19:18:36.143 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 19:18:36.286 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 19:18:36.336 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 19:18:36.338 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 19:18:36.369 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 19:18:36.669 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 19:18:36.822 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 19:18:36.833 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 19:18:36.836 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 4.946 seconds (JVM running for 5.672)
2022-08-04 19:21:03.081 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 19:21:03.081 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 19:21:03.096 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 15 ms
2022-08-04 19:21:06.028 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:52 - 登录成功!生成token!
2022-08-04 19:22:00.385 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 19:22:00.449 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 19:59:38.447 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 256 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 19:59:38.448 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 19:59:39.426 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 19:59:39.446 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 19:59:39.447 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:59:39.447 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:59:39.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:59:39.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 19:59:39.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 19:59:39.449 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:59:39.449 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 19:59:39.544 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 19:59:39.759 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 19:59:39.761 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 19:59:39.960 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 19:59:39.969 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 19:59:39.971 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 19:59:39.971 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 19:59:39.974 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 19:59:39.975 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 19:59:39.975 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 19:59:39.978 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 19:59:40.080 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 19:59:40.081 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1587 ms
2022-08-04 19:59:40.136 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 19:59:40.137 [main] INFO iot.sixiang.license.jwt.JwtFilter:27 - -------------JwtFilter-init---------------
2022-08-04 19:59:40.376 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 19:59:40.813 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 19:59:41.451 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 19:59:41.452 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 19:59:42.122 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 19:59:42.228 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 19:59:42.360 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 19:59:42.406 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 19:59:42.408 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 19:59:42.448 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 19:59:42.760 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 19:59:42.940 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 19:59:42.954 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 19:59:42.958 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.17 seconds (JVM running for 5.975)
2022-08-04 20:00:00.039 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-04 20:00:00.039 [nioEventLoopGroup-6-3] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-04 20:00:00.039 [nioEventLoopGroup-6-2] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-04 20:01:00.655 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 20:01:00.655 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 20:01:00.662 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 7 ms
2022-08-04 20:01:03.065 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:01:14.339 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:01:14.348 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:01:24.955 [http-nio-8868-exec-9] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:01:38.292 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:01:38.298 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:11:45.137 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 15620 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 20:11:45.138 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 20:11:46.340 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 20:11:46.361 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 20:11:46.363 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:11:46.363 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:11:46.363 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:11:46.363 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 20:11:46.364 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:11:46.364 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:11:46.364 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:11:46.458 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 20:11:46.684 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 20:11:46.688 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 20:11:46.899 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 20:11:46.911 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 20:11:46.914 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 20:11:46.914 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 20:11:46.920 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 20:11:46.920 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 20:11:46.920 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 20:11:46.925 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 20:11:47.050 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 20:11:47.050 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1845 ms
2022-08-04 20:11:47.127 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 20:11:47.129 [main] INFO iot.sixiang.license.jwt.JwtFilter:28 - -------------JwtFilter-init---------------
2022-08-04 20:11:47.403 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 20:11:48.010 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 20:11:48.723 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 20:11:48.725 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 20:11:49.429 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 20:11:49.554 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 20:11:49.698 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 20:11:49.766 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 20:11:49.770 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 20:11:49.826 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 20:11:50.137 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 20:11:50.319 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 20:11:50.342 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 20:11:50.349 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.813 seconds (JVM running for 6.628)
2022-08-04 20:11:52.135 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 20:11:52.135 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 20:11:52.145 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 10 ms
2022-08-04 20:11:59.931 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:12:08.267 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:12:08.277 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:12:16.096 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:12:16.103 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:12:21.034 [http-nio-8868-exec-9] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:12:31.151 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:12:31.160 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:13:01.120 [http-nio-8868-exec-4] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:13:10.521 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:13:10.527 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:13:34.544 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 14800 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 20:13:34.545 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 20:13:35.684 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 20:13:35.709 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 20:13:35.711 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:13:35.711 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:13:35.711 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:13:35.712 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 20:13:35.712 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:13:35.712 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:13:35.712 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:13:35.833 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 20:13:36.072 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 20:13:36.074 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 20:13:36.275 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 20:13:36.286 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 20:13:36.288 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 20:13:36.289 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 20:13:36.292 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 20:13:36.292 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 20:13:36.293 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 20:13:36.295 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 20:13:36.482 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 20:13:36.482 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1891 ms
2022-08-04 20:13:36.558 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 20:13:36.559 [main] INFO iot.sixiang.license.jwt.JwtFilter:28 - -------------JwtFilter-init---------------
2022-08-04 20:13:36.770 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 20:13:37.215 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 20:13:37.871 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 20:13:37.872 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 20:13:38.596 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 20:13:38.722 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 20:13:38.881 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 20:13:38.929 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 20:13:38.931 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 20:13:38.968 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 20:13:39.310 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 20:13:39.512 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 20:13:39.529 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 20:13:39.534 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.704 seconds (JVM running for 6.67)
2022-08-04 20:14:04.158 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 20:14:04.158 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 20:14:04.178 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 20 ms
2022-08-04 20:14:38.872 [http-nio-8868-exec-4] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:16:10.979 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:16:10.990 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:16:22.280 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:21:10.846 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:21:10.905 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2022-08-04 20:21:10.911 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:218 - Shutting down ExecutorService 'taskExecutor'
2022-08-04 20:21:10.920 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:350 - HikariPool-1 - Shutdown initiated...
2022-08-04 20:21:10.930 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:352 - HikariPool-1 - Shutdown completed.
2022-08-04 20:21:11.084 [SpringContextShutdownHook] INFO iot.sixiang.license.xss.XssFilter:48 - ==============> destroy XssFilter
2022-08-04 20:21:11.085 [SpringContextShutdownHook] INFO iot.sixiang.license.jwt.JwtFilter:95 - -------------JwtFilter-destroy---------------
2022-08-04 20:21:16.548 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 15892 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 20:21:16.550 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 20:21:17.902 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 20:21:17.938 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 20:21:17.943 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:21:17.943 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:21:17.944 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:21:17.945 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 20:21:17.945 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:21:17.945 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:21:17.945 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:21:18.094 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 20:21:18.462 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 20:21:18.466 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 20:21:18.722 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 20:21:18.733 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 20:21:18.734 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 20:21:18.735 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 20:21:18.738 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 20:21:18.738 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 20:21:18.739 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 20:21:18.741 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 20:21:18.911 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 20:21:18.912 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2266 ms
2022-08-04 20:21:18.980 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 20:21:18.982 [main] INFO iot.sixiang.license.jwt.JwtFilter:28 - -------------JwtFilter-init---------------
2022-08-04 20:21:19.198 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 20:21:19.670 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 20:21:20.652 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 20:21:20.655 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 20:21:21.534 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 20:21:21.696 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 20:21:21.869 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 20:21:21.928 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 20:21:21.932 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 20:21:21.968 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 20:21:22.420 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 20:21:22.663 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 20:21:22.692 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 20:21:22.702 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 7.152 seconds (JVM running for 8.164)
2022-08-04 20:21:22.818 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 20:21:22.818 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 20:21:22.832 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 14 ms
2022-08-04 20:21:39.675 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:21:59.482 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:26:32.465 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:26:32.495 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2022-08-04 20:26:32.498 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:218 - Shutting down ExecutorService 'taskExecutor'
2022-08-04 20:26:32.499 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:350 - HikariPool-1 - Shutdown initiated...
2022-08-04 20:26:32.534 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:352 - HikariPool-1 - Shutdown completed.
2022-08-04 20:26:32.688 [SpringContextShutdownHook] INFO iot.sixiang.license.xss.XssFilter:48 - ==============> destroy XssFilter
2022-08-04 20:26:32.689 [SpringContextShutdownHook] INFO iot.sixiang.license.jwt.JwtFilter:95 - -------------JwtFilter-destroy---------------
2022-08-04 20:26:37.373 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 14560 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-04 20:26:37.375 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-04 20:26:38.348 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-04 20:26:38.375 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-04 20:26:38.376 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:26:38.376 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:26:38.377 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:26:38.377 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-04 20:26:38.378 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-04 20:26:38.378 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:26:38.378 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-04 20:26:38.479 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-04 20:26:38.690 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-04 20:26:38.694 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-04 20:26:38.855 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-04 20:26:38.864 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-04 20:26:38.865 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-04 20:26:38.866 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-04 20:26:38.868 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-04 20:26:38.869 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-04 20:26:38.869 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-04 20:26:38.871 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-04 20:26:38.978 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-04 20:26:38.978 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1558 ms
2022-08-04 20:26:39.035 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-04 20:26:39.038 [main] INFO iot.sixiang.license.jwt.JwtFilter:28 - -------------JwtFilter-init---------------
2022-08-04 20:26:39.281 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-04 20:26:39.665 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-04 20:26:40.239 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-04 20:26:40.240 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-04 20:26:40.844 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-04 20:26:40.952 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-04 20:26:41.085 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-04 20:26:41.131 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-04 20:26:41.133 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-04 20:26:41.162 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-04 20:26:41.415 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-04 20:26:41.562 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-04 20:26:41.573 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-04 20:26:41.576 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 4.783 seconds (JVM running for 5.522)
2022-08-04 20:27:58.009 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-04 20:27:58.009 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-04 20:27:58.025 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 16 ms
2022-08-04 20:27:58.923 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:53 - 登录成功!生成token!
2022-08-04 20:28:07.734 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:28:07.809 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-04 20:29:00.184 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-04 20:29:00.194 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
This source diff could not be displayed because it is too large. You can view the blob instead.
2022-08-08 11:32:38.106 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 1192 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-08 11:32:38.141 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-08 11:32:41.824 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-08 11:32:41.857 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-08 11:32:41.859 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 11:32:41.859 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 11:32:41.860 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 11:32:41.860 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-08 11:32:41.860 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-08 11:32:41.860 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 11:32:41.860 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 11:32:41.972 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-08 11:32:42.224 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-08 11:32:42.226 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-08 11:32:42.428 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-08 11:32:42.439 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-08 11:32:42.441 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-08 11:32:42.442 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-08 11:32:42.447 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-08 11:32:42.447 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-08 11:32:42.447 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-08 11:32:42.460 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-08 11:32:42.571 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-08 11:32:42.572 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 4211 ms
2022-08-08 11:32:42.628 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-08 11:32:42.629 [main] INFO iot.sixiang.license.jwt.JwtFilter:29 - -------------JwtFilter-init---------------
2022-08-08 11:32:42.821 [main] INFO com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor:37 - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2022-08-08 11:32:42.828 [main] INFO org.apache.catalina.core.StandardService:173 - Stopping service [Tomcat]
2022-08-08 11:32:42.834 [main] INFO iot.sixiang.license.xss.XssFilter:48 - ==============> destroy XssFilter
2022-08-08 11:32:42.835 [main] INFO iot.sixiang.license.jwt.JwtFilter:97 - -------------JwtFilter-destroy---------------
2022-08-08 11:33:13.802 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 16184 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-08 11:33:13.804 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-08 11:33:14.904 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-08 11:33:14.925 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-08 11:33:14.926 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 11:33:14.926 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 11:33:14.927 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 11:33:14.927 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-08 11:33:14.927 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-08 11:33:14.928 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 11:33:14.928 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 11:33:15.028 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-08 11:33:15.249 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-08 11:33:15.251 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-08 11:33:15.446 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-08 11:33:15.458 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-08 11:33:15.459 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-08 11:33:15.460 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-08 11:33:15.463 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-08 11:33:15.464 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-08 11:33:15.464 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-08 11:33:15.467 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-08 11:33:15.582 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-08 11:33:15.583 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1721 ms
2022-08-08 11:33:15.711 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-08 11:33:15.713 [main] INFO iot.sixiang.license.jwt.JwtFilter:29 - -------------JwtFilter-init---------------
2022-08-08 11:33:15.915 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-08 11:33:16.427 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-08 11:33:17.094 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-08 11:33:17.095 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-08 11:33:17.879 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-08 11:33:18.003 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-08 11:33:18.144 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-08 11:33:18.195 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-08 11:33:18.198 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-08 11:33:18.232 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-08 11:33:18.535 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-08 11:33:18.702 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-08 11:33:18.713 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-08 11:33:18.716 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.508 seconds (JVM running for 6.183)
2022-08-08 11:34:07.547 [http-nio-8868-exec-2] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-08 11:34:07.547 [http-nio-8868-exec-2] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-08 11:34:07.559 [http-nio-8868-exec-2] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 11 ms
2022-08-08 11:34:48.966 [http-nio-8868-exec-2] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-08 11:34:48.987 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-08 11:34:48.988 [http-nio-8868-exec-2] INFO javax.mail:216 - Tables of loaded providers
2022-08-08 11:34:48.988 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-08 11:34:48.988 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-08 11:34:48.989 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-08 11:34:50.499 [http-nio-8868-exec-2] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-08 11:35:24.491 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-08 14:58:50.745 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 1808 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-08 14:58:50.747 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-08 14:58:52.598 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-08 14:58:52.622 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-08 14:58:52.623 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 14:58:52.624 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 14:58:52.624 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 14:58:52.624 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-08 14:58:52.625 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-08 14:58:52.625 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 14:58:52.625 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 14:58:52.734 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-08 14:58:53.007 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-08 14:58:53.009 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-08 14:58:53.219 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-08 14:58:53.228 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-08 14:58:53.229 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-08 14:58:53.230 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-08 14:58:53.234 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-08 14:58:53.234 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-08 14:58:53.234 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-08 14:58:53.246 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-08 14:58:53.354 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-08 14:58:53.355 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2542 ms
2022-08-08 14:58:53.419 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-08 14:58:53.421 [main] INFO iot.sixiang.license.jwt.JwtFilter:29 - -------------JwtFilter-init---------------
2022-08-08 14:58:53.621 [main] INFO com.ulisesbocchio.jasyptspringboot.encryptor.DefaultLazyEncryptor:37 - String Encryptor custom Bean not found with name 'jasyptStringEncryptor'. Initializing Default String Encryptor
2022-08-08 14:58:53.628 [main] INFO org.apache.catalina.core.StandardService:173 - Stopping service [Tomcat]
2022-08-08 14:58:53.638 [main] INFO iot.sixiang.license.xss.XssFilter:48 - ==============> destroy XssFilter
2022-08-08 14:58:53.638 [main] INFO iot.sixiang.license.jwt.JwtFilter:97 - -------------JwtFilter-destroy---------------
2022-08-08 14:59:56.709 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 1880 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-08 14:59:56.710 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-08 14:59:57.737 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-08 14:59:57.760 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-08 14:59:57.761 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 14:59:57.761 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 14:59:57.762 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 14:59:57.762 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-08 14:59:57.762 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-08 14:59:57.763 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 14:59:57.763 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 14:59:57.860 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-08 14:59:58.076 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-08 14:59:58.078 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-08 14:59:58.299 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-08 14:59:58.309 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-08 14:59:58.311 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-08 14:59:58.312 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-08 14:59:58.315 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-08 14:59:58.316 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-08 14:59:58.316 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-08 14:59:58.318 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-08 14:59:58.432 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-08 14:59:58.432 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1667 ms
2022-08-08 14:59:58.512 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-08 14:59:58.517 [main] INFO iot.sixiang.license.jwt.JwtFilter:29 - -------------JwtFilter-init---------------
2022-08-08 14:59:58.914 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-08 14:59:59.399 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-08 15:00:00.109 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-08 15:00:00.111 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-08 15:00:01.057 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-08 15:00:01.177 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-08 15:00:01.322 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-08 15:00:01.370 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-08 15:00:01.372 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-08 15:00:01.403 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-08 15:00:01.716 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-08 15:00:01.868 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-08 15:00:01.881 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-08 15:00:01.884 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.785 seconds (JVM running for 6.486)
2022-08-08 15:13:05.532 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-08 15:13:05.532 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-08 15:13:05.539 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 7 ms
2022-08-08 15:13:48.711 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:13:48.723 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:14:49.894 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 6972 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-08 15:14:49.896 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-08 15:14:50.967 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-08 15:14:50.987 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-08 15:14:50.989 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 15:14:50.989 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 15:14:50.989 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 15:14:50.990 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-08 15:14:50.990 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-08 15:14:50.990 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 15:14:50.990 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 15:14:51.093 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-08 15:14:51.317 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-08 15:14:51.319 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-08 15:14:51.494 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-08 15:14:51.503 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-08 15:14:51.504 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-08 15:14:51.505 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-08 15:14:51.508 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-08 15:14:51.508 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-08 15:14:51.508 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-08 15:14:51.511 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-08 15:14:51.611 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-08 15:14:51.611 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1629 ms
2022-08-08 15:14:51.664 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-08 15:14:51.666 [main] INFO iot.sixiang.license.jwt.JwtFilter:29 - -------------JwtFilter-init---------------
2022-08-08 15:14:51.908 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-08 15:14:52.295 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-08 15:14:52.855 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-08 15:14:52.857 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-08 15:14:53.545 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-08 15:14:53.654 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-08 15:14:53.788 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-08 15:14:53.835 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-08 15:14:53.838 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-08 15:14:53.869 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-08 15:14:54.140 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-08 15:14:54.289 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-08 15:14:54.301 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-08 15:14:54.304 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 4.926 seconds (JVM running for 5.621)
2022-08-08 15:14:55.840 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-08 15:14:55.840 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-08 15:14:55.851 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 10 ms
2022-08-08 15:14:55.862 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:14:55.886 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:15:37.374 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:15:37.384 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:15:40.013 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:15:40.029 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:16:01.935 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:16:01.940 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:16:58.266 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 16080 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-08 15:16:58.267 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-08 15:16:59.293 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-08 15:16:59.315 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-08 15:16:59.316 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 15:16:59.317 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-08 15:16:59.317 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 15:16:59.317 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-08 15:16:59.318 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-08 15:16:59.318 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 15:16:59.318 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-08 15:16:59.417 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-08 15:16:59.634 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-08 15:16:59.637 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-08 15:16:59.839 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-08 15:16:59.848 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-08 15:16:59.850 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-08 15:16:59.850 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-08 15:16:59.853 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-08 15:16:59.853 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-08 15:16:59.853 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-08 15:16:59.857 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-08 15:16:59.958 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-08 15:16:59.959 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1644 ms
2022-08-08 15:17:00.078 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-08 15:17:00.079 [main] INFO iot.sixiang.license.jwt.JwtFilter:29 - -------------JwtFilter-init---------------
2022-08-08 15:17:00.261 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-08 15:17:00.642 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-08 15:17:01.203 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-08 15:17:01.204 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-08 15:17:01.870 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-08 15:17:01.988 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-08 15:17:02.123 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-08 15:17:02.171 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-08 15:17:02.174 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-08 15:17:02.206 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-08 15:17:02.487 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-08 15:17:02.672 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-08 15:17:02.685 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-08 15:17:02.688 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 4.997 seconds (JVM running for 5.65)
2022-08-08 15:17:25.757 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-08 15:17:25.757 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-08 15:17:25.767 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 10 ms
2022-08-08 15:17:25.779 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:17:25.800 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:17:25.833 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:17:25.914 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:21:39.464 [http-nio-8868-exec-8] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-08 15:21:39.484 [http-nio-8868-exec-8] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-08 15:21:39.485 [http-nio-8868-exec-8] INFO javax.mail:216 - Tables of loaded providers
2022-08-08 15:21:39.485 [http-nio-8868-exec-8] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-08 15:21:39.485 [http-nio-8868-exec-8] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-08 15:21:39.486 [http-nio-8868-exec-8] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-08 15:21:40.777 [http-nio-8868-exec-8] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-08 15:21:58.941 [http-nio-8868-exec-7] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-08 15:21:59.055 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:21:59.088 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:22:26.545 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:22:26.582 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:22:28.871 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:22:28.893 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:24:38.977 [http-nio-8868-exec-10] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-08 15:25:25.965 [http-nio-8868-exec-1] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-08 15:25:26.198 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:25:26.229 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:28:47.835 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:28:47.868 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:29:48.363 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:29:48.408 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:29:52.197 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:29:52.236 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:30:04.252 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:30:04.283 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:30:56.572 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:30:56.595 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:31:52.479 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:31:52.504 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:32:00.672 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:32:00.705 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:32:16.224 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:32:16.257 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:35:34.783 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:35:34.811 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:35:39.827 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:35:39.868 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:36:06.769 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:36:06.800 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:36:09.359 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:36:09.392 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:36:59.702 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:36:59.722 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:37:02.916 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:37:02.933 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 15:37:55.459 [http-nio-8868-exec-7] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-08 15:38:50.721 [http-nio-8868-exec-1] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-08 15:38:50.818 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 15:38:50.833 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 16:00:00.074 [nioEventLoopGroup-6-2] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-08 16:00:00.074 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-08 16:00:00.074 [nioEventLoopGroup-6-3] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-08 17:00:00.034 [nioEventLoopGroup-6-5] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-08 17:00:00.034 [nioEventLoopGroup-6-6] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-08 17:00:00.034 [nioEventLoopGroup-6-4] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-08 18:00:00.045 [nioEventLoopGroup-6-8] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-08 18:00:00.045 [nioEventLoopGroup-6-7] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-08 18:00:00.045 [nioEventLoopGroup-6-9] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-08 18:31:01.728 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-08 18:31:01.847 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-08 19:39:11.339 [nioEventLoopGroup-6-11] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-08 19:39:11.339 [nioEventLoopGroup-6-12] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-08 19:39:11.339 [nioEventLoopGroup-6-10] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-08 20:00:00.049 [nioEventLoopGroup-6-14] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-08 20:00:00.049 [nioEventLoopGroup-6-13] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-08 20:00:00.049 [nioEventLoopGroup-6-15] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-11 17:28:11.810 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 17544 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-11 17:28:11.814 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-11 17:28:14.136 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-11 17:28:14.191 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-11 17:28:14.194 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-11 17:28:14.194 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-11 17:28:14.195 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-11 17:28:14.196 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-11 17:28:14.196 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-11 17:28:14.196 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-11 17:28:14.196 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-11 17:28:14.359 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-11 17:28:14.705 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-11 17:28:14.708 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-11 17:28:14.919 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-11 17:28:14.929 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-11 17:28:14.930 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-11 17:28:14.931 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-11 17:28:14.936 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-11 17:28:14.936 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-11 17:28:14.936 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-11 17:28:14.940 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-11 17:28:15.096 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-11 17:28:15.097 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 3214 ms
2022-08-11 17:28:15.270 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-11 17:28:15.271 [main] INFO iot.sixiang.license.jwt.JwtFilter:29 - -------------JwtFilter-init---------------
2022-08-11 17:28:15.502 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-11 17:28:16.088 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-11 17:28:16.891 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-11 17:28:16.892 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-11 17:28:17.849 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-11 17:28:17.976 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-11 17:28:18.233 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-11 17:28:18.285 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-11 17:28:18.289 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-11 17:28:18.321 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-11 17:28:18.711 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-11 17:28:18.909 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-11 17:28:18.925 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-11 17:28:18.928 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 8.124 seconds (JVM running for 9.332)
2022-08-11 17:28:22.093 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-11 17:28:22.093 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-11 17:28:22.102 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 9 ms
2022-08-11 17:28:32.955 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-11 17:28:33.000 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-11 17:29:03.095 [http-nio-8868-exec-10] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-11 17:29:03.272 [http-nio-8868-exec-10] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-11 17:29:03.273 [http-nio-8868-exec-10] INFO javax.mail:216 - Tables of loaded providers
2022-08-11 17:29:03.274 [http-nio-8868-exec-10] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-11 17:29:03.274 [http-nio-8868-exec-10] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-11 17:29:03.275 [http-nio-8868-exec-10] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-11 17:29:04.657 [http-nio-8868-exec-10] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-11 17:29:27.570 [http-nio-8868-exec-4] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-11 17:29:39.588 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-11 17:29:39.774 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-11 18:00:00.035 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-11 18:00:00.035 [nioEventLoopGroup-6-2] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-11 18:00:00.035 [nioEventLoopGroup-6-3] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-15 13:53:29.955 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 5628 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-15 13:53:29.957 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-15 13:53:32.407 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-15 13:53:32.416 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-15 13:53:32.417 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-15 13:53:32.418 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-15 13:53:32.422 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-15 13:53:32.422 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-15 13:53:32.422 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-15 13:53:32.425 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-15 13:53:32.517 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-15 13:53:32.518 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2485 ms
2022-08-15 13:53:32.556 [main] INFO org.springframework.boot.web.servlet.RegistrationBean:110 - Filter xssFilter was not registered (possibly already registered?)
2022-08-15 13:53:32.574 [main] INFO iot.sixiang.license.xss.XssFilter:29 - ==============> 进入init XssFilter
2022-08-15 13:53:32.575 [main] INFO iot.sixiang.license.jwt.JwtFilter:27 - -------------JwtFilter-init---------------
2022-08-15 13:53:32.780 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-15 13:53:33.207 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-15 13:53:34.420 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-15 13:53:34.525 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-15 13:53:34.644 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-15 13:53:34.686 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-15 13:53:34.688 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-15 13:53:34.716 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-15 13:53:35.127 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-15 13:53:35.140 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-15 13:53:35.143 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.943 seconds (JVM running for 6.738)
2022-08-15 14:00:00.052 [nioEventLoopGroup-7-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-15 14:00:00.052 [nioEventLoopGroup-8-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-15 14:00:00.052 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-15 14:02:03.383 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 17760 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-15 14:02:03.384 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-15 14:02:05.028 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-15 14:02:05.039 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-15 14:02:05.041 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-15 14:02:05.041 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-15 14:02:05.044 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-15 14:02:05.045 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-15 14:02:05.045 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-15 14:02:05.047 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-15 14:02:05.145 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-15 14:02:05.145 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1697 ms
2022-08-15 14:02:05.192 [main] INFO org.springframework.boot.web.servlet.RegistrationBean:110 - Filter xssFilter was not registered (possibly already registered?)
2022-08-15 14:02:05.211 [main] INFO iot.sixiang.license.xss.XssFilter:29 - ==============> 进入init XssFilter
2022-08-15 14:02:05.213 [main] INFO iot.sixiang.license.jwt.JwtFilter:27 - -------------JwtFilter-init---------------
2022-08-15 14:02:05.461 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-15 14:02:05.887 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-15 14:02:07.420 [main] INFO iot.sixiang.license.config.CorsConfig:29 - 重写了addResourceHandlers方法
2022-08-15 14:02:07.557 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-15 14:02:07.700 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-15 14:02:07.755 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-15 14:02:07.757 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-15 14:02:07.796 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-15 14:02:08.239 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-15 14:02:08.254 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-15 14:02:08.257 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.724 seconds (JVM running for 6.734)
2022-08-15 14:10:29.874 [defaultEventExecutorGroup-2-2] INFO iot.sixiang.license.device.DeviceServerHandler:141 - 设备鉴权信息和结果,10,KPZLFXU6HTHN688EPJ,3921F50BF3D360A06774AD4EA4422CA9A5E94C0B,true
2022-08-15 15:00:00.051 [nioEventLoopGroup-10-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-15 15:00:00.051 [nioEventLoopGroup-9-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-15 15:00:00.051 [nioEventLoopGroup-8-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-15 16:00:00.036 [nioEventLoopGroup-12-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-15 16:00:00.036 [nioEventLoopGroup-13-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-15 16:00:00.046 [nioEventLoopGroup-11-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-15 17:00:00.049 [nioEventLoopGroup-14-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-15 17:00:00.049 [nioEventLoopGroup-15-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-15 17:00:00.049 [nioEventLoopGroup-16-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-15 18:00:00.034 [nioEventLoopGroup-18-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:3,1
2022-08-15 18:00:00.034 [nioEventLoopGroup-17-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:1,1
2022-08-15 18:00:00.034 [nioEventLoopGroup-19-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:2,1
2022-08-15 18:20:24.241 [SpringContextShutdownHook] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:218 - Shutting down ExecutorService 'taskScheduler'
2022-08-15 18:20:24.258 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:350 - HikariPool-1 - Shutdown initiated...
2022-08-15 18:20:24.276 [SpringContextShutdownHook] INFO com.zaxxer.hikari.HikariDataSource:352 - HikariPool-1 - Shutdown completed.
2022-08-15 18:20:24.413 [SpringContextShutdownHook] INFO iot.sixiang.license.xss.XssFilter:45 - ==============> destroy XssFilter
2022-08-15 18:20:24.415 [SpringContextShutdownHook] INFO iot.sixiang.license.jwt.JwtFilter:87 - -------------JwtFilter-destroy---------------
This source diff could not be displayed because it is too large. You can view the blob instead.
2022-08-17 15:52:48.234 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 19268 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-17 15:52:48.239 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-17 15:52:50.190 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-17 15:52:50.220 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-17 15:52:50.222 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:52:50.222 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:52:50.222 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:52:50.223 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-17 15:52:50.223 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:52:50.223 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:52:50.223 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:52:50.330 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-17 15:52:50.558 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-17 15:52:50.561 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-17 15:52:50.747 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-17 15:52:50.757 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-17 15:52:50.758 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-17 15:52:50.759 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-17 15:52:50.762 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-17 15:52:50.762 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-17 15:52:50.762 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-17 15:52:50.765 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-17 15:52:50.872 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-17 15:52:50.872 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2556 ms
2022-08-17 15:52:50.927 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-17 15:52:50.928 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-08-17 15:52:51.177 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-17 15:52:51.594 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-17 15:52:52.253 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-17 15:52:52.255 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-17 15:52:52.953 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-17 15:52:53.069 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-17 15:52:53.224 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-17 15:52:53.269 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-17 15:52:53.272 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-17 15:52:53.302 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-17 15:52:53.629 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-17 15:52:53.788 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-17 15:52:53.802 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-17 15:52:53.805 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 6.331 seconds (JVM running for 7.32)
2022-08-17 15:52:54.172 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-17 15:52:54.172 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-17 15:52:54.186 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 14 ms
2022-08-17 15:52:54.200 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:52:54.226 [http-nio-8868-exec-1] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-17 15:52:54.245 [http-nio-8868-exec-1] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-17 15:52:54.246 [http-nio-8868-exec-1] INFO javax.mail:216 - Tables of loaded providers
2022-08-17 15:52:54.246 [http-nio-8868-exec-1] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 15:52:54.247 [http-nio-8868-exec-1] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 15:52:54.248 [http-nio-8868-exec-1] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-17 15:52:55.699 [http-nio-8868-exec-1] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-17 15:52:55.749 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:23.607 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:23.697 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-17 15:53:23.761 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:23.882 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:23.941 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:31.951 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:31.959 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:38.701 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:38.708 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:47.173 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:47.208 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:48.866 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:48.895 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:49.648 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:49.671 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:53:51.971 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:53:51.977 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:55:01.360 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 6260 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-17 15:55:01.361 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-17 15:55:02.551 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-17 15:55:02.573 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-17 15:55:02.575 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:55:02.575 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:55:02.575 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:55:02.576 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-17 15:55:02.576 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:55:02.576 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:55:02.576 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:55:02.676 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-17 15:55:02.897 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-17 15:55:02.899 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-17 15:55:03.094 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-17 15:55:03.103 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-17 15:55:03.105 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-17 15:55:03.105 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-17 15:55:03.108 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-17 15:55:03.108 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-17 15:55:03.108 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-17 15:55:03.111 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-17 15:55:03.232 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-17 15:55:03.233 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1828 ms
2022-08-17 15:55:03.347 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-17 15:55:03.348 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-08-17 15:55:03.536 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-17 15:55:03.912 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-17 15:55:04.530 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-17 15:55:04.531 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-17 15:55:05.229 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-17 15:55:05.342 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-17 15:55:05.487 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-17 15:55:05.532 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-17 15:55:05.534 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-17 15:55:05.563 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-17 15:55:05.841 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-17 15:55:05.996 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-17 15:55:06.008 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-17 15:55:06.011 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.266 seconds (JVM running for 6.038)
2022-08-17 15:55:25.658 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-17 15:55:25.659 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-17 15:55:25.667 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 8 ms
2022-08-17 15:55:25.679 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:55:25.759 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:55:33.051 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:55:33.059 [http-nio-8868-exec-2] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-17 15:55:33.074 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-17 15:55:33.074 [http-nio-8868-exec-2] INFO javax.mail:216 - Tables of loaded providers
2022-08-17 15:55:33.075 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 15:55:33.075 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 15:55:33.076 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-17 15:55:34.090 [http-nio-8868-exec-2] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-17 15:55:34.110 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:55:54.538 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:55:54.574 [http-nio-8868-exec-5] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-17 15:55:54.600 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:55:54.672 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:55:54.705 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:01.124 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:01.401 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:01.464 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:01.495 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:06.269 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:06.314 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:09.035 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:09.426 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:10.891 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:10.938 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:12.926 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:12.987 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:14.314 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:14.338 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:15.673 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:15.675 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:15.675 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:15.676 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:15.701 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:15.703 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:15.714 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:15.747 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:56:16.543 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:56:16.571 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:57:28.543 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:57:28.544 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:59:18.045 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:59:18.092 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:59:24.911 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:59:24.947 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 15:59:49.122 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 14024 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-17 15:59:49.124 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-17 15:59:50.176 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-17 15:59:50.195 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-17 15:59:50.196 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:59:50.196 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:59:50.197 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:59:50.197 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-17 15:59:50.197 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-17 15:59:50.197 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:59:50.198 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 15:59:50.298 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-17 15:59:50.509 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-17 15:59:50.512 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-17 15:59:50.705 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-17 15:59:50.714 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-17 15:59:50.715 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-17 15:59:50.716 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-17 15:59:50.719 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-17 15:59:50.719 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-17 15:59:50.719 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-17 15:59:50.722 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-17 15:59:50.824 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-17 15:59:50.825 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1653 ms
2022-08-17 15:59:50.932 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-17 15:59:50.934 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-08-17 15:59:51.123 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-17 15:59:51.503 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-17 15:59:52.089 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-17 15:59:52.090 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-17 15:59:52.788 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-17 15:59:52.921 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-17 15:59:53.072 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-17 15:59:53.121 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-17 15:59:53.124 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-17 15:59:53.153 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-17 15:59:53.422 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-17 15:59:53.575 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-17 15:59:53.586 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-17 15:59:53.588 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.06 seconds (JVM running for 5.863)
2022-08-17 15:59:55.300 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-17 15:59:55.300 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-17 15:59:55.311 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 10 ms
2022-08-17 15:59:55.323 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 15:59:55.426 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:00:00.041 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:29 - 运维客户端,连接服务器成功:192.168.1.169,8869
2022-08-17 16:00:01.605 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:00:01.615 [http-nio-8868-exec-2] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-17 16:00:01.629 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-17 16:00:01.629 [http-nio-8868-exec-2] INFO javax.mail:216 - Tables of loaded providers
2022-08-17 16:00:01.630 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:00:01.630 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:00:01.631 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-17 16:00:02.756 [http-nio-8868-exec-2] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-17 16:00:02.778 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:00:27.119 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:00:27.318 [http-nio-8868-exec-4] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-17 16:00:27.353 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:00:27.418 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:00:27.451 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:00:31.501 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:00:31.522 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:01:06.577 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:01:06.600 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:01:11.314 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 3836 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-17 16:01:11.316 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-17 16:01:12.356 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-17 16:01:12.377 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-17 16:01:12.379 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:01:12.379 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:01:12.379 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:01:12.380 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-17 16:01:12.380 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:01:12.380 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:01:12.380 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:01:12.481 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-17 16:01:12.688 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-17 16:01:12.690 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-17 16:01:12.885 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-17 16:01:12.895 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-17 16:01:12.898 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-17 16:01:12.898 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-17 16:01:12.902 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-17 16:01:12.902 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-17 16:01:12.902 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-17 16:01:12.905 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-17 16:01:13.007 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-17 16:01:13.007 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1638 ms
2022-08-17 16:01:13.064 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-17 16:01:13.066 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-08-17 16:01:13.316 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-17 16:01:13.712 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-17 16:01:14.293 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-17 16:01:14.294 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-17 16:01:14.978 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-17 16:01:15.094 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-17 16:01:15.233 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-17 16:01:15.282 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-17 16:01:15.285 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-17 16:01:15.315 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-17 16:01:15.588 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-17 16:01:15.743 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-17 16:01:15.755 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-17 16:01:15.758 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.018 seconds (JVM running for 5.735)
2022-08-17 16:02:12.568 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-17 16:02:12.568 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-17 16:02:12.577 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 9 ms
2022-08-17 16:02:12.588 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:02:12.668 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:02:18.359 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:02:18.364 [http-nio-8868-exec-2] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-17 16:02:18.383 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-17 16:02:18.388 [http-nio-8868-exec-2] INFO javax.mail:216 - Tables of loaded providers
2022-08-17 16:02:18.388 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:02:18.389 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:02:18.390 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-17 16:02:19.524 [http-nio-8868-exec-2] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-17 16:02:19.549 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:02:48.602 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:02:48.641 [http-nio-8868-exec-3] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-17 16:02:48.667 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:02:48.734 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:02:48.792 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:02:53.158 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:02:53.165 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:03:12.564 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:03:12.595 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:04:26.603 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 17376 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-17 16:04:26.604 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-17 16:04:27.665 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-17 16:04:27.685 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-17 16:04:27.686 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:04:27.686 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:04:27.687 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:04:27.687 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-17 16:04:27.687 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:04:27.687 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:04:27.688 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:04:27.790 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-17 16:04:28.014 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-17 16:04:28.016 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-17 16:04:28.212 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-17 16:04:28.223 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-17 16:04:28.224 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-17 16:04:28.225 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-17 16:04:28.231 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-17 16:04:28.231 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-17 16:04:28.231 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-17 16:04:28.235 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-17 16:04:28.353 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-17 16:04:28.353 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1697 ms
2022-08-17 16:04:28.411 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-17 16:04:28.412 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-08-17 16:04:28.721 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-17 16:04:29.156 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-17 16:04:29.759 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-17 16:04:29.760 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-17 16:04:30.428 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-17 16:04:30.542 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-17 16:04:30.676 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-17 16:04:30.727 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-17 16:04:30.730 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-17 16:04:30.762 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-17 16:04:31.034 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-17 16:04:31.193 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-17 16:04:31.205 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-17 16:04:31.208 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.26 seconds (JVM running for 6.107)
2022-08-17 16:05:01.787 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-17 16:05:01.787 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-17 16:05:01.796 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 9 ms
2022-08-17 16:05:01.808 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:05:01.885 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:05:07.344 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:05:07.353 [http-nio-8868-exec-2] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-17 16:05:07.367 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-17 16:05:07.368 [http-nio-8868-exec-2] INFO javax.mail:216 - Tables of loaded providers
2022-08-17 16:05:07.368 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:05:07.369 [http-nio-8868-exec-2] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:05:07.370 [http-nio-8868-exec-2] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-17 16:05:08.612 [http-nio-8868-exec-2] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-17 16:05:08.636 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:05:22.504 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:05:22.560 [http-nio-8868-exec-3] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-17 16:05:22.596 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:05:22.720 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:05:22.770 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:05:28.995 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:05:29.011 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:05:40.990 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:05:40.999 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:06:56.195 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 12248 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-17 16:06:56.196 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-17 16:06:57.246 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-17 16:06:57.268 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-17 16:06:57.269 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:06:57.269 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:06:57.270 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:06:57.270 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-17 16:06:57.270 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:06:57.270 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:06:57.270 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:06:57.372 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-17 16:06:57.587 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-17 16:06:57.589 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-17 16:06:57.781 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-17 16:06:57.790 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-17 16:06:57.792 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-17 16:06:57.793 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-17 16:06:57.797 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-17 16:06:57.797 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-17 16:06:57.798 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-17 16:06:57.800 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-17 16:06:57.912 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-17 16:06:57.912 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 1662 ms
2022-08-17 16:06:58.024 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-17 16:06:58.026 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-08-17 16:06:58.209 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-17 16:06:58.599 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-17 16:06:59.171 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-17 16:06:59.172 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-17 16:06:59.858 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-17 16:06:59.976 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-17 16:07:00.113 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-17 16:07:00.164 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-17 16:07:00.167 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-17 16:07:00.199 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-17 16:07:00.470 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-17 16:07:00.629 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-17 16:07:00.640 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-17 16:07:00.643 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 5.0 seconds (JVM running for 5.676)
2022-08-17 16:07:14.619 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-17 16:07:14.619 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-17 16:07:14.628 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 9 ms
2022-08-17 16:07:14.640 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:07:14.719 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:07:19.594 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:07:19.600 [http-nio-8868-exec-5] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-17 16:07:19.614 [http-nio-8868-exec-5] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-17 16:07:19.615 [http-nio-8868-exec-5] INFO javax.mail:216 - Tables of loaded providers
2022-08-17 16:07:19.615 [http-nio-8868-exec-5] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:07:19.615 [http-nio-8868-exec-5] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:07:19.616 [http-nio-8868-exec-5] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-17 16:07:20.786 [http-nio-8868-exec-5] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-17 16:07:20.801 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:07:31.375 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:07:31.429 [http-nio-8868-exec-7] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-17 16:07:31.465 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:07:31.548 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:07:31.780 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:07:38.750 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:07:38.856 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:07:38.907 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:07:38.927 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:13.706 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:13.743 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:18.915 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:18.943 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:20.209 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:20.249 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:35.189 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:35.225 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:36.803 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:36.833 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:42.981 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:49.181 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:49.246 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:53.810 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:53.826 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:55.066 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:55.066 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:55.066 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:55.067 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:09:55.089 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:55.092 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:55.096 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:09:55.134 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:01.553 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:01.580 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:40.145 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:40.157 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:41.182 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:41.189 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:41.199 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:41.250 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:52.486 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:52.714 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:53.533 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:53.701 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:57.968 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:57.975 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:10:58.009 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:10:58.138 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:01.923 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:01.929 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:01.958 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:02.120 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:06.825 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:06.829 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:06.875 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:06.891 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:11.408 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:11.415 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:11.434 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:11.459 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:11.474 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:11.650 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:14.886 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:14.891 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:14.936 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:15.107 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:17.315 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:17.319 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:17.343 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:17.479 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:18.984 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:19.152 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:22.386 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:22.391 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:22.412 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:22.675 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:25.917 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:25.921 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:25.944 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:26.177 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.251 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.255 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.283 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.283 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.283 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.284 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.288 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.289 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.290 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.304 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.326 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.326 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.326 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:34.341 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.352 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:34.356 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:11:41.066 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:11:41.266 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:13:23.122 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 18224 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-08-17 16:13:23.123 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-08-17 16:13:24.427 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-08-17 16:13:24.446 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-08-17 16:13:24.447 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:13:24.447 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:13:24.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:13:24.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-08-17 16:13:24.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-08-17 16:13:24.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:13:24.448 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-08-17 16:13:24.552 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-08-17 16:13:24.778 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-08-17 16:13:24.782 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-08-17 16:13:25.160 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-08-17 16:13:25.179 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-08-17 16:13:25.182 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-08-17 16:13:25.182 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-08-17 16:13:25.191 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-08-17 16:13:25.191 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-08-17 16:13:25.191 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-08-17 16:13:25.195 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-08-17 16:13:25.337 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-08-17 16:13:25.338 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2147 ms
2022-08-17 16:13:25.458 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-08-17 16:13:25.459 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-08-17 16:13:25.652 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-08-17 16:13:26.022 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-08-17 16:13:26.601 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-08-17 16:13:26.602 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-08-17 16:13:27.970 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-08-17 16:13:28.084 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-08-17 16:13:28.232 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-08-17 16:13:28.283 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-08-17 16:13:28.286 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-08-17 16:13:28.318 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-08-17 16:13:28.600 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-08-17 16:13:28.786 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-08-17 16:13:28.798 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-08-17 16:13:28.801 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 6.287 seconds (JVM running for 6.961)
2022-08-17 16:13:52.389 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-08-17 16:13:52.389 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-08-17 16:13:52.396 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 7 ms
2022-08-17 16:13:52.407 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:13:52.483 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:13:57.114 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:13:57.122 [http-nio-8868-exec-4] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-08-17 16:13:57.136 [http-nio-8868-exec-4] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-08-17 16:13:57.137 [http-nio-8868-exec-4] INFO javax.mail:216 - Tables of loaded providers
2022-08-17 16:13:57.137 [http-nio-8868-exec-4] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:13:57.137 [http-nio-8868-exec-4] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-08-17 16:13:57.138 [http-nio-8868-exec-4] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-08-17 16:13:58.278 [http-nio-8868-exec-4] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-08-17 16:13:58.288 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:22.319 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:22.354 [http-nio-8868-exec-2] INFO iot.sixiang.license.controller.LoginController:89 - 登录成功!生成token!
2022-08-17 16:14:22.544 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:22.589 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:22.791 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:27.455 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:27.743 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:32.403 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:32.431 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:32.464 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:32.640 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:37.979 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:38.174 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:39.678 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:40.037 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:14:45.935 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:14:46.141 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:15:24.975 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:15:25.192 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:15:30.147 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:15:30.317 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 16:15:33.250 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-08-17 16:15:33.424 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-08-17 17:00:00.047 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:29 - 运维客户端,连接服务器成功:192.168.1.169,8869
2022-08-17 18:00:00.033 [nioEventLoopGroup-6-2] INFO iot.sixiang.license.operate.OperateConnectionListener:29 - 运维客户端,连接服务器成功:192.168.1.169,8869
2022-08-17 19:35:51.563 [nioEventLoopGroup-6-3] INFO iot.sixiang.license.operate.OperateConnectionListener:29 - 运维客户端,连接服务器成功:192.168.1.169,8869
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
2022-09-14 15:50:53.385 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 7524 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-09-14 15:50:53.390 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-09-14 15:50:56.148 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-09-14 15:50:56.178 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-09-14 15:50:56.180 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-14 15:50:56.180 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-14 15:50:56.180 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-14 15:50:56.181 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-09-14 15:50:56.181 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-09-14 15:50:56.181 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-14 15:50:56.181 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-14 15:50:56.303 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-09-14 15:50:56.628 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-09-14 15:50:56.631 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-09-14 15:50:56.881 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-09-14 15:50:56.892 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-09-14 15:50:56.893 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-09-14 15:50:56.894 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-09-14 15:50:56.898 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-09-14 15:50:56.898 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-09-14 15:50:56.898 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-09-14 15:50:56.901 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-09-14 15:50:57.026 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-09-14 15:50:57.027 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 3490 ms
2022-09-14 15:50:57.180 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-09-14 15:50:57.182 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-09-14 15:50:57.431 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-09-14 15:50:58.044 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-09-14 15:50:58.982 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-09-14 15:50:58.984 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-09-14 15:51:01.016 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-09-14 15:51:01.200 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-09-14 15:51:01.421 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-09-14 15:51:01.477 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-09-14 15:51:01.480 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-09-14 15:51:01.515 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-09-14 15:51:01.879 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-09-14 15:51:02.182 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-09-14 15:51:02.203 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-09-14 15:51:02.210 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 10.047 seconds (JVM running for 11.278)
2022-09-14 15:51:07.411 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-09-14 15:51:07.412 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-09-14 15:51:07.423 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 11 ms
2022-09-14 15:51:07.443 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:51:07.527 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:51:33.714 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:51:33.722 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:52:03.737 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:52:03.745 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:52:44.294 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:52:44.302 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:53:06.082 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:53:06.088 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:54:13.339 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 12976 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-09-14 15:54:13.340 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-09-14 15:54:15.152 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-09-14 15:54:15.179 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-09-14 15:54:15.181 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-14 15:54:15.181 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-14 15:54:15.182 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-14 15:54:15.182 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-09-14 15:54:15.182 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-09-14 15:54:15.183 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-14 15:54:15.183 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-14 15:54:15.320 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-09-14 15:54:15.709 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-09-14 15:54:15.712 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-09-14 15:54:16.027 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-09-14 15:54:16.040 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-09-14 15:54:16.043 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-09-14 15:54:16.043 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-09-14 15:54:16.049 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-09-14 15:54:16.049 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-09-14 15:54:16.049 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-09-14 15:54:16.053 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-09-14 15:54:16.251 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-09-14 15:54:16.252 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2824 ms
2022-09-14 15:54:16.350 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-09-14 15:54:16.351 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-09-14 15:54:16.748 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-09-14 15:54:17.329 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-09-14 15:54:18.143 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-09-14 15:54:18.145 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-09-14 15:54:20.034 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-09-14 15:54:20.222 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-09-14 15:54:20.403 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-09-14 15:54:20.469 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-09-14 15:54:20.472 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-09-14 15:54:20.516 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-09-14 15:54:20.901 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-09-14 15:54:21.089 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-09-14 15:54:21.104 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-09-14 15:54:21.110 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 8.888 seconds (JVM running for 10.447)
2022-09-14 15:54:32.896 [http-nio-8868-exec-2] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-09-14 15:54:32.896 [http-nio-8868-exec-2] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-09-14 15:54:32.904 [http-nio-8868-exec-2] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 8 ms
2022-09-14 15:54:32.921 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:54:32.989 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:55:37.913 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:55:37.921 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:56:17.726 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:56:17.733 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:57:29.701 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:57:29.708 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:58:23.437 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:58:23.443 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:58:33.434 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:58:34.635 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:58:46.607 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:58:46.648 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:59:24.729 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:59:24.736 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:59:55.389 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:59:55.432 [http-nio-8868-exec-9] INFO iot.sixiang.license.controller.LoginController:95 - 登录成功!生成token!
2022-09-14 15:59:55.450 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 15:59:55.572 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 15:59:55.857 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:00:02.070 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:192.168.1.169,8869
2022-09-14 16:00:20.704 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:00:20.711 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:01:22.253 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:01:22.310 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:01:37.177 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:01:37.396 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:01:43.830 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:01:43.837 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:06:31.238 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:06:31.582 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:06:37.077 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:06:37.367 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:06:49.307 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:06:49.528 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:06:54.179 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:06:54.205 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:11:27.562 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:11:27.569 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:12:33.147 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:12:33.155 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:13:21.769 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:13:21.793 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:13:28.027 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:13:28.273 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:17:16.434 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:17:16.628 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:17:27.323 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:17:27.517 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:17:36.833 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:17:37.018 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:17:48.370 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:17:48.392 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:18:05.628 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:18:05.824 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:18:24.608 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:18:24.639 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:19:20.254 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:19:20.442 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:29:18.747 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:29:18.952 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:29:26.984 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:29:27.011 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:29:31.230 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:29:31.416 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:31:49.613 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:31:49.619 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:32:49.627 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:32:49.634 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:33:49.598 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:33:49.606 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:34:56.289 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:34:56.297 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:35:49.754 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:35:49.761 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:36:49.610 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:36:49.667 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:37:49.601 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:37:49.609 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:38:49.627 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:38:49.634 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:39:49.629 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:39:49.636 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:40:56.234 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:40:56.241 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:41:49.623 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:41:49.629 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:42:49.653 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:42:49.661 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:43:56.102 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:43:56.110 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:44:55.035 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:44:55.042 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:46:07.921 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:46:07.927 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:46:49.650 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:46:49.657 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:47:56.341 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:47:56.350 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:49:08.469 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:49:08.477 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:49:50.627 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:49:50.634 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:50:49.620 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:50:49.629 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:51:57.918 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:51:57.927 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:52:50.719 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:52:50.727 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:53:50.645 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:53:50.652 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:54:50.644 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:54:50.687 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:55:50.654 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:55:50.660 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:56:49.645 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:56:49.651 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:57:50.740 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:57:50.751 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:59:06.568 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:59:06.575 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 16:59:49.661 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 16:59:49.667 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:00:02.042 [nioEventLoopGroup-6-2] INFO iot.sixiang.license.operate.OperateConnectionListener:21 - 运维客户端,连接服务器失败:192.168.1.169,8869
2022-09-14 17:00:56.842 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:00:56.850 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:01:49.648 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:01:49.655 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:02:51.605 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:02:51.612 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:03:51.772 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:03:51.779 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:04:49.673 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:04:49.683 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:06:04.259 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:06:04.274 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:06:49.687 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:06:49.703 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:07:56.353 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:07:56.360 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:09:01.093 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:09:01.100 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:09:49.856 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:09:49.863 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:10:53.230 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:10:53.241 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:12:05.097 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:12:05.103 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:12:49.689 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:12:49.696 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:13:49.697 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:13:49.704 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:14:59.383 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:14:59.390 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:16:04.039 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:16:04.044 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:16:50.915 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:16:50.922 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:17:52.486 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:17:52.494 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:18:49.665 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:18:49.697 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:19:52.601 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:19:52.613 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:20:50.475 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:20:50.483 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:21:49.699 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:21:49.709 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:22:49.695 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:22:49.702 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:23:49.731 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:23:49.740 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:24:51.573 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:24:51.587 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:25:49.716 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:25:49.742 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:26:49.714 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:26:49.727 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:28:17.419 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:28:17.438 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:28:49.695 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:28:49.715 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:29:52.801 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:29:52.811 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:30:49.678 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:30:49.688 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:31:49.825 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:31:49.846 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:32:49.725 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:32:49.731 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:33:49.725 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:33:49.732 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:34:58.125 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:34:58.135 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:35:49.725 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:35:49.741 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:36:49.719 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:36:49.741 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:38:08.810 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:38:08.816 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:38:49.719 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:38:49.731 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:39:49.713 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:39:49.721 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:40:49.859 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:40:49.865 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:42:06.533 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:42:06.545 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:43:03.260 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:43:03.268 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:43:53.487 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:43:53.493 [http-nio-8868-exec-7] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:44:49.725 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:44:49.731 [http-nio-8868-exec-8] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:45:52.221 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:45:52.237 [http-nio-8868-exec-9] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:46:49.740 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:46:49.747 [http-nio-8868-exec-10] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:47:57.252 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:47:57.259 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:48:52.072 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:48:52.080 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:49:49.752 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:49:49.772 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:50:49.850 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:50:49.859 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:51:49.851 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:51:49.858 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-14 17:52:49.847 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-14 17:52:49.854 [http-nio-8868-exec-6] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:29:34.713 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 1980 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-09-21 17:29:34.717 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-09-21 17:29:37.522 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-09-21 17:29:37.559 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-09-21 17:29:37.561 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-21 17:29:37.562 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-21 17:29:37.562 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-21 17:29:37.563 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-09-21 17:29:37.563 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-09-21 17:29:37.564 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-21 17:29:37.564 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-21 17:29:37.710 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-09-21 17:29:38.046 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-09-21 17:29:38.050 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-09-21 17:29:38.359 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-09-21 17:29:38.373 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-09-21 17:29:38.376 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-09-21 17:29:38.377 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-09-21 17:29:38.381 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-09-21 17:29:38.382 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-09-21 17:29:38.382 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-09-21 17:29:38.386 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-09-21 17:29:38.539 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-09-21 17:29:38.541 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 3726 ms
2022-09-21 17:29:38.660 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-09-21 17:29:38.662 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-09-21 17:29:38.983 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-09-21 17:29:39.612 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-09-21 17:29:40.542 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-09-21 17:29:40.544 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-09-21 17:29:42.340 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-09-21 17:29:42.540 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-09-21 17:29:42.728 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-09-21 17:29:42.789 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-09-21 17:29:42.792 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-09-21 17:29:42.831 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-09-21 17:29:43.208 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-09-21 17:29:43.403 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-09-21 17:29:43.419 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-09-21 17:29:43.423 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 10.177 seconds (JVM running for 11.818)
2022-09-21 17:30:04.905 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-09-21 17:30:04.905 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-09-21 17:30:04.914 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 9 ms
2022-09-21 17:30:04.929 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:30:04.953 [http-nio-8868-exec-1] INFO javax.mail:234 - Jakarta Mail version 1.6.5
2022-09-21 17:30:04.967 [http-nio-8868-exec-1] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.providers
2022-09-21 17:30:04.968 [http-nio-8868-exec-1] INFO javax.mail:216 - Tables of loaded providers
2022-09-21 17:30:04.968 [http-nio-8868-exec-1] INFO javax.mail:216 - Providers Listed By Class Name: {com.sun.mail.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], com.sun.mail.imap.IMAPSSLStore=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], com.sun.mail.pop3.POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], com.sun.mail.smtp.SMTPSSLTransport=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], com.sun.mail.imap.IMAPStore=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], com.sun.mail.pop3.POP3SSLStore=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-09-21 17:30:04.969 [http-nio-8868-exec-1] INFO javax.mail:216 - Providers Listed By Protocol: {imap=javax.mail.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Oracle], smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Oracle], pop3=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Oracle], imaps=javax.mail.Provider[STORE,imaps,com.sun.mail.imap.IMAPSSLStore,Oracle], smtps=javax.mail.Provider[TRANSPORT,smtps,com.sun.mail.smtp.SMTPSSLTransport,Oracle], pop3s=javax.mail.Provider[STORE,pop3s,com.sun.mail.pop3.POP3SSLStore,Oracle]}
2022-09-21 17:30:04.970 [http-nio-8868-exec-1] INFO javax.mail:234 - successfully loaded resource: /META-INF/javamail.default.address.map
2022-09-21 17:30:06.231 [http-nio-8868-exec-1] INFO iot.sixiang.license.util.EmailUtils:46 - 一份简单邮件已发送。
2022-09-21 17:30:06.283 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:30:25.814 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:30:26.740 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:30:32.448 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:30:32.489 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:30:39.219 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:30:39.285 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:30:44.820 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:30:44.873 [http-nio-8868-exec-5] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:31:40.215 [main] INFO iot.sixiang.license.LicenseApplication:55 - Starting LicenseApplication on DESKTOP-6S34GJL with PID 13124 (C:\Users\Administrator\IdeaProjects\iot_sixiang_license\license\target\classes started by Administrator in C:\Users\Administrator\IdeaProjects\iot_sixiang_license)
2022-09-21 17:31:40.216 [main] INFO iot.sixiang.license.LicenseApplication:655 - The following profiles are active: dev
2022-09-21 17:31:41.679 [main] INFO c.u.jasyptspringboot.configuration.EnableEncryptablePropertiesBeanFactoryPostProcessor:39 - Post-processing PropertySource instances
2022-09-21 17:31:41.706 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy
2022-09-21 17:31:41.708 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-21 17:31:41.709 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper
2022-09-21 17:31:41.709 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-21 17:31:41.710 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper
2022-09-21 17:31:41.710 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper
2022-09-21 17:31:41.710 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application-dev.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-21 17:31:41.711 [main] INFO com.ulisesbocchio.jasyptspringboot.EncryptablePropertySourceConverter:56 - Converting PropertySource applicationConfig: [classpath:/application.yml] [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper
2022-09-21 17:31:41.838 [main] INFO com.ulisesbocchio.jasyptspringboot.filter.DefaultLazyPropertyFilter:31 - Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter
2022-09-21 17:31:42.105 [main] INFO com.ulisesbocchio.jasyptspringboot.resolver.DefaultLazyPropertyResolver:35 - Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver
2022-09-21 17:31:42.107 [main] INFO com.ulisesbocchio.jasyptspringboot.detector.DefaultLazyPropertyDetector:35 - Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector
2022-09-21 17:31:42.330 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:91 - Tomcat initialized with port(s): 8868 (http)
2022-09-21 17:31:42.341 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Initializing ProtocolHandler ["http-nio-8868"]
2022-09-21 17:31:42.344 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat]
2022-09-21 17:31:42.344 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/9.0.34]
2022-09-21 17:31:42.348 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - Loaded APR based Apache Tomcat Native library [1.2.23] using APR version [1.7.0].
2022-09-21 17:31:42.349 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR capabilities: IPv6 [true], sendfile [true], accept filters [false], random [true].
2022-09-21 17:31:42.349 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - APR/OpenSSL configuration: useAprConnector [false], useOpenSSL [true]
2022-09-21 17:31:42.352 [main] INFO org.apache.catalina.core.AprLifecycleListener:173 - OpenSSL successfully initialized [OpenSSL 1.1.1c 28 May 2019]
2022-09-21 17:31:42.476 [main] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext
2022-09-21 17:31:42.476 [main] INFO org.springframework.web.context.ContextLoader:284 - Root WebApplicationContext: initialization completed in 2191 ms
2022-09-21 17:31:42.618 [main] INFO iot.sixiang.license.xss.XssFilter:30 - ==============> 进入init XssFilter
2022-09-21 17:31:42.620 [main] INFO iot.sixiang.license.jwt.JwtFilter:31 - -------------JwtFilter-init---------------
2022-09-21 17:31:42.856 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting...
2022-09-21 17:31:43.313 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed.
2022-09-21 17:31:44.117 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService
2022-09-21 17:31:44.119 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor:181 - Initializing ExecutorService 'taskExecutor'
2022-09-21 17:31:45.715 [main] INFO iot.sixiang.license.config.CorsConfig:36 - 重写了addResourceHandlers方法
2022-09-21 17:31:45.857 [main] INFO springfox.documentation.spring.web.WebMvcPropertySourcedRequestMappingHandlerMapping:69 - Mapped URL path [/v2/api-docs] onto method [springfox.documentation.swagger2.web.Swagger2ControllerWebMvc#getDocumentation(String, HttpServletRequest)]
2022-09-21 17:31:46.047 [main] INFO org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler:181 - Initializing ExecutorService 'taskScheduler'
2022-09-21 17:31:46.100 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:93 - Documentation plugins bootstrapped
2022-09-21 17:31:46.103 [main] INFO springfox.documentation.spring.web.plugins.DocumentationPluginsBootstrapper:79 - Found 1 custom documentation plugin(s)
2022-09-21 17:31:46.136 [main] INFO springfox.documentation.spring.web.scanners.ApiListingReferenceScanner:44 - Scanning for api listing references
2022-09-21 17:31:46.503 [main] INFO springfox.documentation.spring.web.readers.operation.CachingOperationNameGenerator:41 - Generating unique operation named: encryptUsingPOST_1
2022-09-21 17:31:46.732 [main] INFO org.apache.coyote.http11.Http11NioProtocol:173 - Starting ProtocolHandler ["http-nio-8868"]
2022-09-21 17:31:46.746 [main] INFO org.springframework.boot.web.embedded.tomcat.TomcatWebServer:203 - Tomcat started on port(s): 8868 (http) with context path ''
2022-09-21 17:31:46.750 [main] INFO iot.sixiang.license.LicenseApplication:61 - Started LicenseApplication in 7.379 seconds (JVM running for 8.508)
2022-09-21 17:31:51.924 [http-nio-8868-exec-1] INFO org.apache.catalina.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2022-09-21 17:31:51.924 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2022-09-21 17:31:51.933 [http-nio-8868-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 9 ms
2022-09-21 17:31:51.947 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:31:51.994 [http-nio-8868-exec-1] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:32:03.331 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:32:03.337 [http-nio-8868-exec-2] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:32:05.861 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:32:05.866 [http-nio-8868-exec-3] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 17:32:11.627 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:39 - ========>进入XSS过滤器
2022-09-21 17:32:11.632 [http-nio-8868-exec-4] INFO iot.sixiang.license.xss.XssFilter:41 - =========>过滤器XSS执行完
2022-09-21 18:00:00.180 [nioEventLoopGroup-6-1] INFO iot.sixiang.license.operate.OperateConnectionListener:29 - 运维客户端,连接服务器成功:192.168.1.169,8869
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment