diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/controller/TtInjectEquipController.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/controller/TtInjectEquipController.java new file mode 100644 index 0000000..02f62e1 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/controller/TtInjectEquipController.java @@ -0,0 +1,310 @@ +package org.jeecg.modules.demo.ttinjectequip.controller; + +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.*; +import java.util.stream.Collectors; +import java.io.IOException; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import org.jeecg.common.api.vo.Result; +import org.jeecg.common.system.query.QueryGenerator; +import org.jeecg.common.util.RedisUtil; +import org.jeecg.common.util.oConvertUtils; + +import org.jeecg.modules.demo.ttinjectequip.entity.TtInjectEquip; +import org.jeecg.modules.demo.ttinjectequip.service.ITtInjectEquipService; + +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import lombok.extern.slf4j.Slf4j; + +import org.jeecgframework.poi.excel.ExcelImportUtil; +import org.jeecgframework.poi.excel.def.NormalExcelConstants; +import org.jeecgframework.poi.excel.entity.ExportParams; +import org.jeecgframework.poi.excel.entity.ImportParams; +import org.jeecgframework.poi.excel.view.JeecgEntityExcelView; +import org.jeecg.common.system.base.controller.JeecgController; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; +import org.springframework.web.multipart.MultipartHttpServletRequest; +import org.springframework.web.servlet.ModelAndView; +import com.alibaba.fastjson.JSON; +import io.swagger.annotations.Api; +import io.swagger.annotations.ApiOperation; +import org.jeecg.common.aspect.annotation.AutoLog; +import org.apache.shiro.authz.annotation.RequiresPermissions; + +import static java.math.BigDecimal.valueOf; + +/** + * @Description: tt_inject_equip + * @Author: jeecg-boot + * @Date: 2023-02-14 + * @Version: V1.0 + */ +@Api(tags="tt_inject_equip") +@RestController +@RequestMapping("/ttinjectequip/ttInjectEquip") +@Slf4j +public class TtInjectEquipController extends JeecgController { + @Autowired + private ITtInjectEquipService ttInjectEquipService; + + @Autowired + private RedisUtil redisUtil; + + /** + * 分页列表查询 + * + * @param ttInjectEquip + * @param pageNo + * @param pageSize + * @param req + * @return + */ + //@AutoLog(value = "tt_inject_equip-分页列表查询") + @ApiOperation(value="tt_inject_equip-分页列表查询", notes="tt_inject_equip-分页列表查询") + @GetMapping(value = "/list") + public Result> queryPageList(TtInjectEquip ttInjectEquip, + @RequestParam(name="pageNo", defaultValue="1") Integer pageNo, + @RequestParam(name="pageSize", defaultValue="10") Integer pageSize, + HttpServletRequest req) { + QueryWrapper queryWrapper = QueryGenerator.initQueryWrapper(ttInjectEquip, req.getParameterMap()); + Page page = new Page(pageNo, pageSize); + IPage pageList = ttInjectEquipService.page(page, queryWrapper); + return Result.OK(pageList); + } + + + + /** + * 注塑机看板列表查询 + * + * @param ttInjectEquip + * @return + */ + //@AutoLog(value = "tt_inject_equip-2.8注塑机看板列表查询") + @ApiOperation(value="tt_inject_equip-2.8注塑机看板列表查询", notes="tt_inject_equip-2.8注塑机看板列表查询") + @GetMapping(value = "/queryList") + public Result> queryList(TtInjectEquip ttInjectEquip) throws ParseException { + //select * from tt_inject_data + //order by equip_no,day_name + SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm"); + Date date = new Date(); + String nowDateString = sdf.format(date);//2023-02-08 11:23 2023-02-08 08:50 + List injectDataList = new ArrayList<>(); + for(int i = 1; i<21;i++){ + Random generator = new Random(); //温度随机数 + int randomIndex1 = generator.nextInt( 3 ) - 1;//随机数-1到1 + int randomIndex2 = generator.nextInt( 3 ) - 1;//随机数-1到1 + int randomIndex3 = generator.nextInt( 3 ) - 1;//随机数-1到1 + int randomIndex4 = generator.nextInt( 3 ) - 1;//随机数-1到1 + int randomIndex5 = 0; + + int currentpressure=generator.nextInt(3)-1; + int passrate = generator.nextInt(7)-3; + int currenttemp=generator.nextInt(4)-2; + int clyle=generator.nextInt(11)-10; + TtInjectEquip injectEquip = new TtInjectEquip(); + injectEquip.setEqtNo("注塑机" + i); //注塑机编号 + Object object = redisUtil.get(injectEquip.getEqtNo()); + if (object != null) { + randomIndex5 = Integer.parseInt(String.valueOf(object)); + }else{ + randomIndex5 = generator.nextInt( 60 );//随机数0到59 45 + redisUtil.set(injectEquip.getEqtNo(), randomIndex5); + } + String openTimeParam = String.valueOf(randomIndex5); + if(randomIndex5 < 10){ + openTimeParam = "0" + String.valueOf(randomIndex5); + } + injectEquip.setDayName(date); + injectEquip.setDynamicMoldActTemp(String.valueOf(135 + randomIndex1)); //动模温度 + injectEquip.setDynamicMoldCfgTemp(String.valueOf(135 + randomIndex2)); + injectEquip.setFixedMoldActTemp(String.valueOf(135 + randomIndex3)); //定模温度 + injectEquip.setFixedMoldCfgTemp(String.valueOf(135 + randomIndex4)); + + injectEquip.setCurrentPressure(valueOf(72+currentpressure)); + injectEquip.setPassRate(valueOf(98 + passrate)); + injectEquip.setCurrentTemp(valueOf(125+currenttemp)); + if(i == 6 || i == 8){ //注塑机定义四种状态 + injectEquip.setEquipStatus(2); + injectEquip.setOpenTime(0); + injectEquip.setTodayProgress(0); + injectEquip.setTodayQty(0); + + injectEquip.setCurrentPressure(valueOf(0)); + injectEquip.setCurrentTemp(valueOf(0)); + injectEquip.setPassRate(valueOf(0)); + injectEquip.setCycleTime(0); + injectEquip.setOutputQty(0); + }else if(i == 11 || i == 12){ + injectEquip.setEquipStatus(3); + injectEquip.setOpenTime(0); + injectEquip.setTodayProgress(0); + injectEquip.setTodayQty(0); + + injectEquip.setCurrentPressure(valueOf(0)); + injectEquip.setCurrentTemp(valueOf(0)); + injectEquip.setPassRate(valueOf(0)); + injectEquip.setCycleTime(0); + injectEquip.setOutputQty(0); + }else if(i == 19){ + injectEquip.setEquipStatus(4); + injectEquip.setOpenTime(0); + injectEquip.setTodayProgress(0); + injectEquip.setTodayQty(0); + + injectEquip.setCurrentPressure(valueOf(0)); + injectEquip.setCurrentTemp(valueOf(0)); + injectEquip.setPassRate(valueOf(0)); + injectEquip.setCycleTime(0); + injectEquip.setOutputQty(0); + }else{ + injectEquip.setEquipStatus(1); + String openDate = nowDateString.substring(0, 10) + " 08:" + openTimeParam;//开机时间8点到9点之间2023-02-08 08:45 + long time = date.getTime(); + long time2 = sdf.parse(openDate).getTime(); + int Minutes = (int)(time - time2) / (1000 * 60 ); + int cycletime = (int)(time - time2) / (1000-clyle ); //生产节拍 + + if(Minutes < 0){//未到开机时间 + injectEquip.setOpenTime(0);//开机时长分钟 + injectEquip.setEquipStatus(4); + injectEquip.setTodayProgress(0); + injectEquip.setTodayQty(0); + + injectEquip.setCurrentPressure(valueOf(0)); + injectEquip.setCurrentTemp(valueOf(0)); + injectEquip.setPassRate(valueOf(0)); + injectEquip.setCycleTime(0); + injectEquip.setOutputQty(0); + }else{ + injectEquip.setOpenTime(Minutes);//开机时长分钟 + injectEquip.setCycleTime(cycletime); + injectEquip.setTodayQty((int)Math.round(Minutes * 2.5));//现在产量,每分钟3个 + injectEquip.setOutputQty((int)Math.round(Minutes * 2.5)); + injectEquip.setTodayProgress(injectEquip.getTodayQty()/12); + if(injectEquip.getTodayProgress() >= 100){//生产完成关机 + injectEquip.setEquipStatus(4); + injectEquip.setOpenTime(480); + injectEquip.setTodayProgress(100); + injectEquip.setTodayQty(1200); + + } + } + } + injectDataList.add(injectEquip); + } + return Result.OK(injectDataList); + } + + + /** + * 添加 + * + * @param ttInjectEquip + * @return + */ + @AutoLog(value = "tt_inject_equip-添加") + @ApiOperation(value="tt_inject_equip-添加", notes="tt_inject_equip-添加") + //@RequiresPermissions("ttinjectequip:tt_inject_equip:add") + @PostMapping(value = "/add") + public Result add(@RequestBody TtInjectEquip ttInjectEquip) { + ttInjectEquipService.save(ttInjectEquip); + return Result.OK("添加成功!"); + } + + /** + * 编辑 + * + * @param ttInjectEquip + * @return + */ + @AutoLog(value = "tt_inject_equip-编辑") + @ApiOperation(value="tt_inject_equip-编辑", notes="tt_inject_equip-编辑") + //@RequiresPermissions("ttinjectequip:tt_inject_equip:edit") + @RequestMapping(value = "/edit", method = {RequestMethod.PUT,RequestMethod.POST}) + public Result edit(@RequestBody TtInjectEquip ttInjectEquip) { + ttInjectEquipService.updateById(ttInjectEquip); + return Result.OK("编辑成功!"); + } + + /** + * 通过id删除 + * + * @param id + * @return + */ + @AutoLog(value = "tt_inject_equip-通过id删除") + @ApiOperation(value="tt_inject_equip-通过id删除", notes="tt_inject_equip-通过id删除") + //@RequiresPermissions("ttinjectequip:tt_inject_equip:delete") + @DeleteMapping(value = "/delete") + public Result delete(@RequestParam(name="id",required=true) String id) { + ttInjectEquipService.removeById(id); + return Result.OK("删除成功!"); + } + + /** + * 批量删除 + * + * @param ids + * @return + */ + @AutoLog(value = "tt_inject_equip-批量删除") + @ApiOperation(value="tt_inject_equip-批量删除", notes="tt_inject_equip-批量删除") + //@RequiresPermissions("ttinjectequip:tt_inject_equip:deleteBatch") + @DeleteMapping(value = "/deleteBatch") + public Result deleteBatch(@RequestParam(name="ids",required=true) String ids) { + this.ttInjectEquipService.removeByIds(Arrays.asList(ids.split(","))); + return Result.OK("批量删除成功!"); + } + + /** + * 通过id查询 + * + * @param id + * @return + */ + //@AutoLog(value = "tt_inject_equip-通过id查询") + @ApiOperation(value="tt_inject_equip-通过id查询", notes="tt_inject_equip-通过id查询") + @GetMapping(value = "/queryById") + public Result queryById(@RequestParam(name="id",required=true) String id) { + TtInjectEquip ttInjectEquip = ttInjectEquipService.getById(id); + if(ttInjectEquip==null) { + return Result.error("未找到对应数据"); + } + return Result.OK(ttInjectEquip); + } + + /** + * 导出excel + * + * @param request + * @param ttInjectEquip + */ + //@RequiresPermissions("ttinjectequip:tt_inject_equip:exportXls") + @RequestMapping(value = "/exportXls") + public ModelAndView exportXls(HttpServletRequest request, TtInjectEquip ttInjectEquip) { + return super.exportXls(request, ttInjectEquip, TtInjectEquip.class, "tt_inject_equip"); + } + + /** + * 通过excel导入数据 + * + * @param request + * @param response + * @return + */ + //@RequiresPermissions("ttinjectequip:tt_inject_equip:importExcel") + @RequestMapping(value = "/importExcel", method = RequestMethod.POST) + public Result importExcel(HttpServletRequest request, HttpServletResponse response) { + return super.importExcel(request, response, TtInjectEquip.class); + } + +} diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/entity/TtInjectEquip.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/entity/TtInjectEquip.java new file mode 100644 index 0000000..cd89cba --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/entity/TtInjectEquip.java @@ -0,0 +1,106 @@ +package org.jeecg.modules.demo.ttinjectequip.entity; + +import java.io.Serializable; +import java.io.UnsupportedEncodingException; +import java.util.Date; +import java.math.BigDecimal; +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.TableLogic; +import lombok.Data; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.springframework.format.annotation.DateTimeFormat; +import org.jeecgframework.poi.excel.annotation.Excel; +import org.jeecg.common.aspect.annotation.Dict; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.EqualsAndHashCode; +import lombok.experimental.Accessors; + +/** + * @Description: tt_inject_equip + * @Author: jeecg-boot + * @Date: 2023-02-14 + * @Version: V1.0 + */ +@Data +@TableName("tt_inject_equip") +@Accessors(chain = true) +@EqualsAndHashCode(callSuper = false) +@ApiModel(value="tt_inject_equip对象", description="tt_inject_equip") +public class TtInjectEquip implements Serializable { + private static final long serialVersionUID = 1L; + + /**id*/ + @TableId(type = IdType.ASSIGN_ID) + @ApiModelProperty(value = "id") + private java.lang.Integer id; + /**日期*/ + @Excel(name = "日期", width = 15, format = "yyyy-MM-dd") + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern="yyyy-MM-dd") + @ApiModelProperty(value = "日期") + private java.util.Date dayName; + /**机台*/ + @Excel(name = "机台", width = 15) + @ApiModelProperty(value = "机台") + private java.lang.String eqtNo; + /**定模设定值*/ + @Excel(name = "定模设定值", width = 15) + @ApiModelProperty(value = "定模设定值") + private java.lang.String fixedMoldCfgTemp; + /**定模温度*/ + @Excel(name = "定模温度", width = 15) + @ApiModelProperty(value = "定模温度") + private java.lang.String fixedMoldActTemp; + /**动模设定值*/ + @Excel(name = "动模设定值", width = 15) + @ApiModelProperty(value = "动模设定值") + private java.lang.String dynamicMoldCfgTemp; + /**动模温度*/ + @Excel(name = "动模温度", width = 15) + @ApiModelProperty(value = "动模温度") + private java.lang.String dynamicMoldActTemp; + /**注塑机当前状态,1:运行 2:待机 3:故障 4:关机*/ + @Excel(name = "注塑机当前状态,1:运行 2:待机 3:故障 4:关机", width = 15) + @ApiModelProperty(value = "注塑机当前状态,1:运行 2:待机 3:故障 4:关机") + private java.lang.Integer equipStatus; + /**今日产量*/ + @Excel(name = "今日产量", width = 15) + @ApiModelProperty(value = "今日产量") + private java.lang.Integer todayQty; + /**生产进度,看板显示的时候,前端页面需要加 %*/ + @Excel(name = "生产进度,看板显示的时候,前端页面需要加 %", width = 15) + @ApiModelProperty(value = "生产进度,看板显示的时候,前端页面需要加 %") + private java.lang.Integer todayProgress; + /**开机时间*/ + @Excel(name = "开机时间", width = 15) + @ApiModelProperty(value = "开机时间") + private java.lang.Integer openTime; + /**生产节拍(单位:秒)*/ + @Excel(name = "生产节拍(单位:秒)", width = 15) + @ApiModelProperty(value = "生产节拍(单位:秒)") + private java.lang.Integer cycleTime; + /**温度*/ + @Excel(name = "温度", width = 15) + @ApiModelProperty(value = "温度") + private java.math.BigDecimal currentTemp; + /**压力(单位:Mpa)*/ + @Excel(name = "压力(单位:Mpa)", width = 15) + @ApiModelProperty(value = "压力(单位:Mpa)") + private java.math.BigDecimal currentPressure; + /**合格率(单位:百分比)*/ + @Excel(name = "合格率(单位:百分比)", width = 15) + @ApiModelProperty(value = "合格率(单位:百分比)") + private java.math.BigDecimal passRate; + /**产出数量*/ + @Excel(name = "产出数量", width = 15) + @ApiModelProperty(value = "产出数量") + private java.lang.Integer outputQty; + /**记录创建时间*/ + @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd") + @DateTimeFormat(pattern="yyyy-MM-dd") + @ApiModelProperty(value = "记录创建时间") + private java.util.Date createTime; +} diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/mapper/TtInjectEquipMapper.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/mapper/TtInjectEquipMapper.java new file mode 100644 index 0000000..c6a9721 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/mapper/TtInjectEquipMapper.java @@ -0,0 +1,17 @@ +package org.jeecg.modules.demo.ttinjectequip.mapper; + +import java.util.List; + +import org.apache.ibatis.annotations.Param; +import org.jeecg.modules.demo.ttinjectequip.entity.TtInjectEquip; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; + +/** + * @Description: tt_inject_equip + * @Author: jeecg-boot + * @Date: 2023-02-14 + * @Version: V1.0 + */ +public interface TtInjectEquipMapper extends BaseMapper { + +} diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/mapper/xml/TtInjectEquipMapper.xml b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/mapper/xml/TtInjectEquipMapper.xml new file mode 100644 index 0000000..0260e3c --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/mapper/xml/TtInjectEquipMapper.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/service/ITtInjectEquipService.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/service/ITtInjectEquipService.java new file mode 100644 index 0000000..f90c905 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/service/ITtInjectEquipService.java @@ -0,0 +1,14 @@ +package org.jeecg.modules.demo.ttinjectequip.service; + +import org.jeecg.modules.demo.ttinjectequip.entity.TtInjectEquip; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * @Description: tt_inject_equip + * @Author: jeecg-boot + * @Date: 2023-02-14 + * @Version: V1.0 + */ +public interface ITtInjectEquipService extends IService { + +} diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/service/impl/TtInjectEquipServiceImpl.java b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/service/impl/TtInjectEquipServiceImpl.java new file mode 100644 index 0000000..94b3353 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/service/impl/TtInjectEquipServiceImpl.java @@ -0,0 +1,19 @@ +package org.jeecg.modules.demo.ttinjectequip.service.impl; + +import org.jeecg.modules.demo.ttinjectequip.entity.TtInjectEquip; +import org.jeecg.modules.demo.ttinjectequip.mapper.TtInjectEquipMapper; +import org.jeecg.modules.demo.ttinjectequip.service.ITtInjectEquipService; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + +/** + * @Description: tt_inject_equip + * @Author: jeecg-boot + * @Date: 2023-02-14 + * @Version: V1.0 + */ +@Service +public class TtInjectEquipServiceImpl extends ServiceImpl implements ITtInjectEquipService { + +} diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/TtInjectEquipList.vue b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/TtInjectEquipList.vue new file mode 100644 index 0000000..856aa87 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/TtInjectEquipList.vue @@ -0,0 +1,258 @@ + + + + \ No newline at end of file diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/TtInjectEquip_menu_insert.sql b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/TtInjectEquip_menu_insert.sql new file mode 100644 index 0000000..4c24d84 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/TtInjectEquip_menu_insert.sql @@ -0,0 +1,26 @@ +-- 注意:该页面对应的前台目录为views/ttinjectequip文件夹下 +-- 如果你想更改到其他目录,请修改sql中component字段对应的值 + + +INSERT INTO sys_permission(id, parent_id, name, url, component, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_route, is_leaf, keep_alive, hidden, hide_tab, description, status, del_flag, rule_flag, create_by, create_time, update_by, update_time, internal_or_external) +VALUES ('2023021408159520070', NULL, 'tt_inject_equip', '/ttinjectequip/ttInjectEquipList', 'ttinjectequip/TtInjectEquipList', NULL, NULL, 0, NULL, '1', 0.00, 0, NULL, 1, 0, 0, 0, 0, NULL, '1', 0, 0, 'admin', '2023-02-14 08:15:07', NULL, NULL, 0); + +-- 权限控制sql +-- 新增 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023021408159520071', '2023021408159520070', '添加tt_inject_equip', NULL, NULL, 0, NULL, NULL, 2, 'ttinjectequip:tt_inject_equip:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-02-14 08:15:07', NULL, NULL, 0, 0, '1', 0); +-- 编辑 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023021408159520072', '2023021408159520070', '编辑tt_inject_equip', NULL, NULL, 0, NULL, NULL, 2, 'ttinjectequip:tt_inject_equip:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-02-14 08:15:07', NULL, NULL, 0, 0, '1', 0); +-- 删除 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023021408159520073', '2023021408159520070', '删除tt_inject_equip', NULL, NULL, 0, NULL, NULL, 2, 'ttinjectequip:tt_inject_equip:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-02-14 08:15:07', NULL, NULL, 0, 0, '1', 0); +-- 批量删除 +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023021408159520074', '2023021408159520070', '批量删除tt_inject_equip', NULL, NULL, 0, NULL, NULL, 2, 'ttinjectequip:tt_inject_equip:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-02-14 08:15:07', NULL, NULL, 0, 0, '1', 0); +-- 导出excel +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023021408159520075', '2023021408159520070', '导出excel_tt_inject_equip', NULL, NULL, 0, NULL, NULL, 2, 'ttinjectequip:tt_inject_equip:exportXls', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-02-14 08:15:07', NULL, NULL, 0, 0, '1', 0); +-- 导入excel +INSERT INTO sys_permission(id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) +VALUES ('2023021408159520076', '2023021408159520070', '导入excel_tt_inject_equip', NULL, NULL, 0, NULL, NULL, 2, 'ttinjectequip:tt_inject_equip:importExcel', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-02-14 08:15:07', NULL, NULL, 0, 0, '1', 0); \ No newline at end of file diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipForm.vue b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipForm.vue new file mode 100644 index 0000000..6d6f451 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipForm.vue @@ -0,0 +1,174 @@ + + + \ No newline at end of file diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipModal.Style#Drawer.vue b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipModal.Style#Drawer.vue new file mode 100644 index 0000000..143179c --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipModal.Style#Drawer.vue @@ -0,0 +1,84 @@ + + + + + \ No newline at end of file diff --git a/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipModal.vue b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipModal.vue new file mode 100644 index 0000000..76e4c68 --- /dev/null +++ b/linkage-boot/linkage-module-demo/src/main/java/org/jeecg/modules/demo/ttinjectequip/vue/modules/TtInjectEquipModal.vue @@ -0,0 +1,60 @@ + + + \ No newline at end of file diff --git a/logs/error-log.html b/logs/error-log.html index de06f2a..fcc1534 100644 --- a/logs/error-log.html +++ b/logs/error-log.html @@ -1185,3 +1185,1893 @@ TD.Exception { background: #A2AEE8; font-family: courier, monospace;} LineOfCaller + + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:10:31 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 08:14:39,207java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:39,307java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
ERROR2023-02-14 08:14:43,736 fileList 不合法!!!aOnlCgformApiController.java1274
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:29:40 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:56:43 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:58:16 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:04:03 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:05:15 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:10:41 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:12:08 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:15:12 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:16:21 CST 2023

+ + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 09:17:34,107{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction +
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) +
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) +
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) +
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) +
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) +
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) +
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) +
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) +
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:17:56 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:19:02 CST 2023

+ + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
ERROR2023-02-14 09:20:13,754{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction +
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) +
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) +
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) +
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) +
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) +
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) +
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) +
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) +
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:45:22 CST 2023

+ + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 10:02:16 CST 2023

+ + + + + + + + + + + diff --git a/logs/jeecgboot-2023-02-14.0.html b/logs/jeecgboot-2023-02-14.0.html new file mode 100644 index 0000000..feb2f08 --- /dev/null +++ b/logs/jeecgboot-2023-02-14.0.html @@ -0,0 +1,16751 @@ + + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:10:31 CST 2023

+ +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:10:31,642HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:10:31,705Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18672 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:10:31,706The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:10:36,485Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:10:36,491Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:10:36,871Finished Spring Data repository scanning in 352 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:10:37,075 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:10:37,076 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:10:37,077 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,317register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:10:37,770Bean '(inner bean)#ccd000e#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,770Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,770Bean '(inner bean)#ccd000e#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,770Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,770Bean '(inner bean)#ccd000e#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,770Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,770Bean '(inner bean)#ccd000e#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean '(inner bean)#ccd000e#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean '(inner bean)#ccd000e#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean '(inner bean)#ccd000e#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean '(inner bean)#ccd000e#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean '(inner bean)#ccd000e#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean '(inner bean)#ccd000e' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,786Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,817Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,817Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,864Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,864Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,864Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,864Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,879Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,879Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,879Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,926Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,926Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:37,926Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/870900038] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,098Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,223Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,223Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,223Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$d94c6771] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,641Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,641Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$e39e9049] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,657Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:38,719Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:39,004===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:10:39,004===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:10:39,004Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:39,020Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:39,051Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:39,083Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$8d28fd28] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:39,083Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:10:39,573Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:10:39,589Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:10:39,589Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:10:39,589Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:10:39,951Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:10:39,951Root WebApplicationContext: initialization completed in 8124 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:10:40,141 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:10:41,182{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:10:41,182dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:10:41,182dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:10:44,732 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:10:46,073Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:10:46,088Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:10:46,088Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:10:46,088Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:10:46,104Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:10:46,104JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:10:46,104Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676333446073' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 08:10:46,104Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:10:46,104Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:10:46,104JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3979c6e8setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:10:47,989 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:10:50,242Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:10:51,104 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:10:52,417Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:10:52,448Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:10:54,780Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:10:54,801Started LinkageSystemApplication in 25.927 seconds (JVM running for 30.585)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:10:54,801 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:10:54,958 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:10:55,117Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:10:55,117Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:10:55,117Completed initialization in 0 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:10:55,782Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:10:56,166Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 started.startQuartzScheduler.java547
INFO2023-02-14 08:11:02,492————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:11:27,267获取验证码,Redis key = 4934f90b1dc7686515ddecb5f28c5fd9,checkCode = pWrfrandomImageLoginController.java518
INFO2023-02-14 08:11:28,297获取验证码,Redis key = 37280ab3179ce11f31b52adbc38f204b,checkCode = NHqMrandomImageLoginController.java518
INFO2023-02-14 08:11:32,506redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-14 08:11:32,903加密操作,Aspect程序耗时:8msaroundSensitiveDataAspect.java76
INFO2023-02-14 08:11:33,548【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 08:11:40,016拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:11:40,094---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:11:40,097排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:11:50,757拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:11:50,782---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:11:50,783排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:11:56,121拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:11:56,140---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:11:56,142排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:12:03,386拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:12:03,406---查询过滤器,Query规则---field:table_name, rule:=, value:tt_inject_equipaddEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:03,407---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:03,407排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:12:04,420拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:12:04,438---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:04,439排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:12:25,216 connect databaseName : ttxh-bootreadAllTableNamesDbReadTableUtil.java67
INFO2023-02-14 08:12:32,508 connect databaseName : ttxh-bootreadOriginalTableColumnDbReadTableUtil.java436
INFO2023-02-14 08:12:33,181拦截请求 >> /online/cgform/head/list ; 请求类型 >> GET . arroundPermissionDataAspect.java71
INFO2023-02-14 08:12:33,196---查询过滤器,Query规则---field:copy_type, rule:=, value:0addEasyQueryQueryGenerator.java648
INFO2023-02-14 08:12:33,198排序规则>>列:createTime,排序方式:descdoMultiFieldsOrderQueryGenerator.java241
INFO2023-02-14 08:14:38,857load template data: {primaryKeyPolicy=java.lang.Integer, serialVersionUID=8528111510940165195, entityPackage=ttinjectequip, entityName=TtInjectEquip, primaryKeyField=id, columns=[{"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], tableVo={"tableName":"tt_inject_equip","ftlDescription":"tt_inject_equip","primaryKeyPolicy":"null","sequenceCode":"null","entityPackage":"ttinjectequip","entityName":"TtInjectEquip","fieldRowNum":"1","searchFieldNum":"-1","fieldRequiredNum":"4"}, originalColumns=[{"fieldDbName":"id","fieldName":"id","filedComment":"id","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"1","isKey":"Y","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"Y","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"create_time","fieldName":"createTime","filedComment":"记录创建时间","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"17","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], bussiPackage=org.jeecg.modules.demo, tableName=tt_inject_equip}aCodeGenerateOne.java120
INFO2023-02-14 08:14:38,857 load template from templateRootDir = 'D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\jeecg\code-template-online',stylePath ='default.one', out GenerateRootDir:E:\workspace\linkage-bootaBaseCodeGenerate.java55
INFO2023-02-14 08:14:39,207[generate] template:default\one\java\${bussiPackage}\${entityPackage}\controller\${entityName}Controller.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,207java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,223[generate] template:default\one\java\${bussiPackage}\${entityPackage}\entity\${entityName}.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,223[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\${entityName}Mapper.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,223java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,240[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\xml\${entityName}Mapper.xml ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xmlaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xml (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,240[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\I${entityName}Service.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,240[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\impl\${entityName}ServiceImpl.javai ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.javaaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,240java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.java (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,273[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}List.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,273[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}_menu_insert.sql ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sqlaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,273java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sql (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,290[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Form.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,290[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,290java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,307[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal__Style#Drawer.vuei ==> E:\workspace\linkage-boot\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vueaBaseCodeGenerate.java129
ERROR2023-02-14 08:14:39,307java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。)aBaseCodeGenerate.java98
java.io.FileNotFoundException: E:\workspace\linkage-boot\src\main\java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vue (系统找不到指定的路径。) +
    at java.io.FileOutputStream.open0(Native Method) +
    at java.io.FileOutputStream.open(FileOutputStream.java:270) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:213) +
    at java.io.FileOutputStream.<init>(FileOutputStream.java:162) +
    at org.jeecgframework.codegenerate.generate.util.b.a(FreemarkerHelper.java:90) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:130) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:87) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:62) +
    at org.jeecgframework.codegenerate.generate.impl.a.a.a(BaseCodeGenerate.java:48) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:148) +
    at org.jeecgframework.codegenerate.generate.impl.CodeGenerateOne.generateCodeFile(CodeGenerateOne.java:164) +
    at org.jeecg.modules.online.cgform.service.a.d.generateCode(OnlCgformHeadServiceImpl.java:1651) +
    at org.jeecg.modules.online.cgform.service.a.d$$FastClassBySpringCGLIB$$76271ae2.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy.invokeMethod(CglibAopProxy.java:386) +
    at org.springframework.aop.framework.CglibAopProxy.access$000(CglibAopProxy.java:85) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:704) +
    at org.jeecg.modules.online.cgform.service.a.d$$EnhancerBySpringCGLIB$$abedcc4b.generateCode(<generated>) +
    at org.jeecg.modules.online.cgform.c.a.b(OnlCgformApiController.java:1152) +
    at org.jeecg.modules.online.cgform.c.a$$FastClassBySpringCGLIB$$b70991a.invoke(<generated>) +
    at org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:793) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +
    at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:763) +
    at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:708) +
    at org.jeecg.modules.online.cgform.c.a$$EnhancerBySpringCGLIB$$4f5dd8a2.b(<generated>) +
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +
    at java.lang.reflect.Method.invoke(Method.java:498) +
    at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) +
    at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) +
    at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) +
    at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +
    at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +
    at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) +
    at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) +
    at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +
    at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) +
    at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at com.alibaba.druid.support.http.WebStatFilter.doFilter(WebStatFilter.java:124) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.web.trace.servlet.HttpTraceFilter.doFilterInternal(HttpTraceFilter.java:88) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:61) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AdviceFilter.executeChain(AdviceFilter.java:108) +
    at org.apache.shiro.web.servlet.AdviceFilter.doFilterInternal(AdviceFilter.java:137) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.shiro.web.servlet.ProxiedFilterChain.doFilter(ProxiedFilterChain.java:66) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.executeChain(AbstractShiroFilter.java:458) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter$1.call(AbstractShiroFilter.java:373) +
    at org.apache.shiro.subject.support.SubjectCallable.doCall(SubjectCallable.java:90) +
    at org.apache.shiro.subject.support.SubjectCallable.call(SubjectCallable.java:83) +
    at org.apache.shiro.subject.support.DelegatingSubject.execute(DelegatingSubject.java:387) +
    at org.apache.shiro.web.servlet.AbstractShiroFilter.doFilterInternal(AbstractShiroFilter.java:370) +
    at org.apache.shiro.web.servlet.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:154) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +
    at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) +
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) +
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) +
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) +
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +
    at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) +
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) +
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) +
    at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) +
    at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +
    at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) +
    at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) +
    at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) +
    at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) +
    at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +
    at java.lang.Thread.run(Thread.java:748) +
INFO2023-02-14 08:14:39,323 ----- jeecg-boot ---- generate code success =======> 表名:tt_inject_equip generateCodeFileCodeGenerateOne.java149
ERROR2023-02-14 08:14:43,736 fileList 不合法!!!aOnlCgformApiController.java1274
INFO2023-02-14 08:14:50,252-------通过数据库读取用户拥有的角色Rules------username: admin,Roles size: 2getUserRoleSetSysBaseApiImpl.java839
INFO2023-02-14 08:14:50,286-------通过数据库读取用户拥有的权限Perms------username: admin,Perms size: 3getUserPermissionSetSysBaseApiImpl.java861
INFO2023-02-14 08:14:50,287===============Shiro权限认证成功==============doGetAuthorizationInfoShiroRealm.java79
INFO2023-02-14 08:15:07,619load template data: {primaryKeyPolicy=java.lang.Integer, serialVersionUID=-2080781961818293140, entityPackage=ttinjectequip, entityName=TtInjectEquip, primaryKeyField=id, columns=[{"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], tableVo={"tableName":"tt_inject_equip","ftlDescription":"tt_inject_equip","primaryKeyPolicy":"null","sequenceCode":"null","entityPackage":"ttinjectequip","entityName":"TtInjectEquip","fieldRowNum":"1","searchFieldNum":"-1","fieldRequiredNum":"4"}, originalColumns=[{"fieldDbName":"id","fieldName":"id","filedComment":"id","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"N","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"1","isKey":"Y","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"Y","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"day_name","fieldName":"dayName","filedComment":"日期","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"2","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"eqt_no","fieldName":"eqtNo","filedComment":"机台","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"3","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_cfg_temp","fieldName":"fixedMoldCfgTemp","filedComment":"定模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"4","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"fixed_mold_act_temp","fieldName":"fixedMoldActTemp","filedComment":"定模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"5","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_cfg_temp","fieldName":"dynamicMoldCfgTemp","filedComment":"动模设定值","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"6","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"dynamic_mold_act_temp","fieldName":"dynamicMoldActTemp","filedComment":"动模温度","fieldType":"java.lang.String","fieldDbType":"string","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"7","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"equip_status","fieldName":"equipStatus","filedComment":"注塑机当前状态,1:运行 2:待机 3:故障 4:关机","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"8","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_qty","fieldName":"todayQty","filedComment":"今日产量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"9","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"today_progress","fieldName":"todayProgress","filedComment":"生产进度,看板显示的时候,前端页面需要加 %","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"10","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"open_time","fieldName":"openTime","filedComment":"开机时间","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"11","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"cycle_time","fieldName":"cycleTime","filedComment":"生产节拍(单位:秒)","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"12","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_temp","fieldName":"currentTemp","filedComment":"温度","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"13","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"current_pressure","fieldName":"currentPressure","filedComment":"压力(单位:Mpa)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"14","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"pass_rate","fieldName":"passRate","filedComment":"合格率(单位:百分比)","fieldType":"java.math.BigDecimal","fieldDbType":"BigDecimal","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"15","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"output_qty","fieldName":"outputQty","filedComment":"产出数量","fieldType":"java.lang.Integer","fieldDbType":"int","classType":"text","classType_row":"text","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"text","fieldOrderNum":"16","isKey":"N","isShow":"Y","isShowList":"Y","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}, {"fieldDbName":"create_time","fieldName":"createTime","filedComment":"记录创建时间","fieldType":"java.util.Date","fieldDbType":"Date","classType":"date","classType_row":"date","optionType":"","charmaxLength":"","precision":"null","scale":"null","nullable":"Y","fieldLength":"120","fieldHref":"null","fieldValidType":"null","fieldDefault":"null","fieldShowType":"date","fieldOrderNum":"17","isKey":"N","isShow":"N","isShowList":"N","isQuery":"N","uploadnum":"null","defaultVal":"null","sort":"N","readonly":"N","queryMode":"single","dictField":"null","dictTable":"null","dictText":"null"}], bussiPackage=org.jeecg.modules.demo, tableName=tt_inject_equip}aCodeGenerateOne.java120
INFO2023-02-14 08:15:07,619 load template from templateRootDir = 'D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-biz\target\classes\jeecg\code-template-online',stylePath ='default.one', out GenerateRootDir:D:\leiaBaseCodeGenerate.java55
INFO2023-02-14 08:15:07,786[generate] template:default\one\java\${bussiPackage}\${entityPackage}\controller\${entityName}Controller.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\controller\TtInjectEquipController.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,869[generate] template:default\one\java\${bussiPackage}\${entityPackage}\entity\${entityName}.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\entity\TtInjectEquip.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,885[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\${entityName}Mapper.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\TtInjectEquipMapper.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,885[generate] template:default\one\java\${bussiPackage}\${entityPackage}\mapper\xml\${entityName}Mapper.xml ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\mapper\xml\TtInjectEquipMapper.xmlaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,902[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\I${entityName}Service.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\ITtInjectEquipService.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,902[generate] template:default\one\java\${bussiPackage}\${entityPackage}\service\impl\${entityName}ServiceImpl.javai ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\service\impl\TtInjectEquipServiceImpl.javaaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,919[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}List.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquipList.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,950[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\${entityName}_menu_insert.sql ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\TtInjectEquip_menu_insert.sqlaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,952[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Form.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipForm.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,985[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:07,985[generate] template:default\one\java\${bussiPackage}\${entityPackage}\vue\modules\${entityName}Modal__Style#Drawer.vuei ==> D:\lei\src/main/java\org\jeecg\modules\demo\ttinjectequip\vue\modules\TtInjectEquipModal.Style#Drawer.vueaBaseCodeGenerate.java129
INFO2023-02-14 08:15:08,002 ----- jeecg-boot ---- generate code success =======> 表名:tt_inject_equip generateCodeFileCodeGenerateOne.java149
INFO2023-02-14 08:19:07,255————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:19:18,540————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:19:24,240获取验证码,Redis key = f16b137cd688aaf929f4c7946a9383c8,checkCode = sF27randomImageLoginController.java518
INFO2023-02-14 08:19:28,920————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:19:45,858redis remove key:sys:cache:encrypt:user::adminremoveJeecgRedisCacheWriter.java113
INFO2023-02-14 08:20:03,614————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:20:14,989————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:24:11,686ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 08:24:11,686ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676334151558"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 08:28:11,887ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 08:28:11,887ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676334272249"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 08:29:27,402Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:29:27,552【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 08:29:27,567Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 08:29:27,567Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 08:29:27,567Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:29:27,567Scheduler MyScheduler_$_DESKTOP-9EB22GD1676333446073 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 08:29:27,583dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 08:29:27,583{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 08:29:27,583{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 08:29:27,583dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:29:40 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:29:40,964HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:29:40,995Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 8020 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:29:40,995The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:29:44,417Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:29:44,428Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:29:44,783Finished Spring Data repository scanning in 333 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:29:44,987 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:29:44,987 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:29:44,987 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,223register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:29:45,629Bean '(inner bean)#6e090aaa#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,635Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,636Bean '(inner bean)#6e090aaa#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,637Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,637Bean '(inner bean)#6e090aaa#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,639Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,639Bean '(inner bean)#6e090aaa#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,640Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,640Bean '(inner bean)#6e090aaa#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,641Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,642Bean '(inner bean)#6e090aaa#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,643Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,643Bean '(inner bean)#6e090aaa#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,644Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,645Bean '(inner bean)#6e090aaa#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,645Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,646Bean '(inner bean)#6e090aaa#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,646Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,647Bean '(inner bean)#6e090aaa' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,648Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,670Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,673Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,699Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,700Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,703Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,706Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,709Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,710Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,711Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,744Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,748Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,749Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1895167389] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,881Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,981Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,987Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:45,988Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$8c9055] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,315Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,320Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$adeb92d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,328Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,386Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,642===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:29:46,645===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:29:46,650Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,658Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,687Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,716Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$b469260c] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:46,718Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:29:47,146Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:29:47,162Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:29:47,162Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:29:47,162Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:29:47,473Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:29:47,473Root WebApplicationContext: initialization completed in 6382 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:29:47,629 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:29:48,576{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:29:48,576dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:29:48,576dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:29:51,639 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:29:52,857Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:29:52,857Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:29:52,873Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:29:52,873Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:29:52,873Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:29:52,873JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:29:52,873Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676334592857' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 08:29:52,873Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:29:52,888Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:29:52,888JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@34714012setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:29:54,450 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:29:56,569Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:29:56,728 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:29:57,783Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:29:57,814Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:30:00,064Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:30:00,079Started LinkageSystemApplication in 20.099 seconds (JVM running for 21.528)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:30:00,079 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:30:00,204 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:30:00,974Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:30:00,974Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:30:00,976Completed initialization in 1 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:30:01,072Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:30:01,383Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 started.startQuartzScheduler.java547
INFO2023-02-14 08:30:11,520【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 08:30:51,323————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:30:57,255————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:56:35,707Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:56:35,843【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 08:56:35,860Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 08:56:35,861Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 08:56:35,861Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:56:35,862Scheduler MyScheduler_$_DESKTOP-9EB22GD1676334592857 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 08:56:35,867dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 08:56:35,870{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 08:56:35,881{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 08:56:35,881dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:56:43 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:56:43,706HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:56:43,732Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 18760 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:56:43,733The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:56:47,327Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:56:47,331Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:56:47,707Finished Spring Data repository scanning in 351 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:56:47,910 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:56:47,910 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:56:47,911 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:56:48,160register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,161register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,161register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,162register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,163register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,163register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,163register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:56:48,567Bean '(inner bean)#1eb6037d#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,573Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,573Bean '(inner bean)#1eb6037d#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,574Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,575Bean '(inner bean)#1eb6037d#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,576Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,577Bean '(inner bean)#1eb6037d#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,578Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,579Bean '(inner bean)#1eb6037d#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,580Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,580Bean '(inner bean)#1eb6037d#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,581Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,582Bean '(inner bean)#1eb6037d#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,583Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,583Bean '(inner bean)#1eb6037d#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,584Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,585Bean '(inner bean)#1eb6037d#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,585Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,586Bean '(inner bean)#1eb6037d' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,587Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,610Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,612Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,638Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,639Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,643Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,646Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,648Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,649Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,650Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,686Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,690Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,691Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/140736469] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,822Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,920Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,926Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:48,927Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$90e34fbb] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,239Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,244Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$9b357893] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,252Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,306Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,560===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:56:49,563===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:56:49,568Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,577Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,604Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,634Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$44bfe572] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:49,637Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:56:50,067Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:56:50,083Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:56:50,084Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:56:50,084Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:56:50,398Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:56:50,398Root WebApplicationContext: initialization completed in 6595 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:56:50,572 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:56:51,606{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:56:51,607dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:56:51,608dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:56:54,741 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:56:56,007Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:56:56,011Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:56:56,024Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:56:56,025Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:56:56,029Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:56:56,032JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:56:56,033Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336216010' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 08:56:56,034Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:56:56,034Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:56:56,034JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@54464330setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:56:57,794 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:56:59,819Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:56:59,953 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:57:01,129Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:57:01,157Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:57:03,073Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:57:03,087Started LinkageSystemApplication in 20.35 seconds (JVM running for 21.794)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:57:03,095 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:57:03,229 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:57:03,547Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:57:03,547Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:57:03,551Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:57:04,081Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:57:04,296Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 started.startQuartzScheduler.java547
INFO2023-02-14 08:57:19,517【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 08:57:24,453————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 08:58:09,040Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:58:09,171【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 08:58:09,188Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 08:58:09,189Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 08:58:09,189Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 paused.standbyQuartzScheduler.java585
INFO2023-02-14 08:58:09,190Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336216010 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 08:58:09,196dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 08:58:09,198{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 08:58:09,208{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 08:58:09,209dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 08:58:16 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 08:58:16,752HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 08:58:16,778Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 6712 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 08:58:16,779The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 08:58:20,149Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 08:58:20,154Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 08:58:20,519Finished Spring Data repository scanning in 340 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 08:58:20,714 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 08:58:20,715 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 08:58:20,716 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 08:58:20,961register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,962register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,962register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,962register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:20,963register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 08:58:21,353Bean '(inner bean)#1f48fa72#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,358Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,359Bean '(inner bean)#1f48fa72#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,360Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,360Bean '(inner bean)#1f48fa72#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,362Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,363Bean '(inner bean)#1f48fa72#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,364Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,365Bean '(inner bean)#1f48fa72#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,366Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,366Bean '(inner bean)#1f48fa72#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,367Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,368Bean '(inner bean)#1f48fa72#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,369Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,370Bean '(inner bean)#1f48fa72#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,371Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,371Bean '(inner bean)#1f48fa72#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,372Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,372Bean '(inner bean)#1f48fa72' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,373Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,396Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,399Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,425Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,427Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,430Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,433Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,436Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,436Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,437Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,470Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,473Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,474Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/515244925] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,602Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,700Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,705Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:21,708Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6015d6a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,018Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,023Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6a67ff80] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,031Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,085Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,328===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 08:58:22,331===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 08:58:22,336Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,344Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,372Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,401Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$13f26c5f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,403Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 08:58:22,827Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 08:58:22,842Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:58:22,843Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 08:58:22,843Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 08:58:23,147Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 08:58:23,147Root WebApplicationContext: initialization completed in 6300 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 08:58:23,307 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 08:58:24,268{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 08:58:24,270dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 08:58:24,270dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 08:58:27,400 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 08:58:28,694Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 08:58:28,697Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 08:58:28,711Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 08:58:28,711Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 08:58:28,716Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 08:58:28,719JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 08:58:28,720Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336308696' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 08:58:28,720Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 08:58:28,720Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 08:58:28,721JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@e8ce5b1setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 08:58:30,551 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 08:58:32,657Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 08:58:32,795 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 08:58:33,920Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 08:58:33,945Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 08:58:35,851Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 08:58:35,866Started LinkageSystemApplication in 20.013 seconds (JVM running for 21.385)logStartedStartupInfoLogger.java61
INFO2023-02-14 08:58:35,873 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 08:58:35,996 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 08:58:36,334Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 08:58:36,334Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 08:58:36,337Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 08:58:36,853Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 08:58:37,122Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 started.startQuartzScheduler.java547
INFO2023-02-14 08:58:53,269【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 09:03:55,666Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:03:55,801【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 09:03:55,820Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:03:55,820Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:03:55,821Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:03:55,821Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336308696 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:03:55,828dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:03:55,831{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:03:55,840{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:03:55,840dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:04:03 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:04:03,488HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:04:03,513Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17896 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:04:03,514The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:04:06,932Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:04:06,937Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:04:07,301Finished Spring Data repository scanning in 339 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:04:07,501 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:04:07,502 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:04:07,503 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:04:07,733register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,734register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,734register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,735register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,735register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,735register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:07,736register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:04:08,127Bean '(inner bean)#7be7c052#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,132Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,133Bean '(inner bean)#7be7c052#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,134Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,135Bean '(inner bean)#7be7c052#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,136Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,136Bean '(inner bean)#7be7c052#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,137Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,138Bean '(inner bean)#7be7c052#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,139Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,139Bean '(inner bean)#7be7c052#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,140Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,141Bean '(inner bean)#7be7c052#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,142Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,143Bean '(inner bean)#7be7c052#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,144Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,145Bean '(inner bean)#7be7c052#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,146Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,146Bean '(inner bean)#7be7c052' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,147Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,169Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,172Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,199Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,200Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,202Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,206Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,209Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,209Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,210Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,243Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,246Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,247Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/504973670] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,379Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,479Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,484Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,485Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$1425f239] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,799Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,804Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$1e781b11] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,812Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:08,868Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:09,116===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:04:09,119===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:04:09,124Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:09,132Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:09,160Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:09,191Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$c80287f0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:09,194Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:04:09,627Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:04:09,642Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:04:09,643Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:04:09,643Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:04:09,951Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:04:09,951Root WebApplicationContext: initialization completed in 6369 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:04:10,114 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:04:11,079{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:04:11,081dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:04:11,081dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:04:14,149 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:04:15,350Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:04:15,353Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:04:15,366Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:04:15,366Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:04:15,370Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:04:15,374JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:04:15,375Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336655352' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:04:15,375Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:04:15,375Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:04:15,375JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@79408109setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:04:16,860 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:04:18,989Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:04:19,121 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:04:20,183Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:04:20,208Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:04:22,183Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:04:22,198Started LinkageSystemApplication in 19.599 seconds (JVM running for 20.978)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:04:22,206 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:04:22,329 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:04:22,717Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:04:22,717Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:04:22,720Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:04:23,190Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:04:23,385ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:04:23,386ClusterManager: Scanning for instance "DESKTOP-9EB22GD1676336308696"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:04:23,452Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 started.startQuartzScheduler.java547
INFO2023-02-14 09:04:24,957————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:04:39,260【系统 WebSocket】有新的连接,总数为:1onOpenWebSocket.java43
INFO2023-02-14 09:05:07,779Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:05:07,921【系统 WebSocket】连接断开,总数为:0onCloseWebSocket.java52
INFO2023-02-14 09:05:07,937Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:05:07,938Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:05:07,938Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:05:07,941Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336655352 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:05:07,948dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:05:07,953{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:05:07,963{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:05:07,964dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:05:15 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:05:15,598HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:05:15,621Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 12832 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:05:15,621The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:05:19,079Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:05:19,083Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:05:19,483Finished Spring Data repository scanning in 372 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:05:19,688 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:05:19,688 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:05:19,689 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:05:19,944register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,945register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,946register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,946register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:19,946register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:05:20,336Bean '(inner bean)#2c1ea7be#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,343Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,343Bean '(inner bean)#2c1ea7be#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,344Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,345Bean '(inner bean)#2c1ea7be#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,346Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,347Bean '(inner bean)#2c1ea7be#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,348Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,348Bean '(inner bean)#2c1ea7be#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,349Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,349Bean '(inner bean)#2c1ea7be#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,350Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,351Bean '(inner bean)#2c1ea7be#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,352Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,352Bean '(inner bean)#2c1ea7be#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,353Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,354Bean '(inner bean)#2c1ea7be#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,354Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,355Bean '(inner bean)#2c1ea7be' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,356Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,378Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,380Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,408Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,409Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,412Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,415Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,418Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,419Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,420Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,455Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,459Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,460Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/711320119] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,591Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,693Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,698Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:20,701Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$60d6da87] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,035Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,040Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6b29035f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,048Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,102Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,366===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:05:21,369===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:05:21,373Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,382Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,410Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,445Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$14b3703e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,448Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:05:21,892Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:05:21,908Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:05:21,908Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:05:21,909Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:05:22,234Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:05:22,234Root WebApplicationContext: initialization completed in 6546 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:05:22,398 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:05:23,416{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:05:23,417dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:05:23,417dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:05:26,563 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:05:27,783Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:05:27,786Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:05:27,799Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:05:27,800Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:05:27,804Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:05:27,807JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:05:27,808Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676336727785' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:05:27,809Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:05:27,809Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:05:27,809JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@56589f00setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:05:29,717 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:05:31,811Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:05:31,980 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:05:33,166Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:05:33,191Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:05:35,100Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:05:35,115Started LinkageSystemApplication in 20.447 seconds (JVM running for 21.814)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:05:35,123 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:05:35,245 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:05:35,508Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:05:35,509Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:05:35,511Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:05:36,113Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:05:36,374Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 started.startQuartzScheduler.java547
INFO2023-02-14 09:05:38,837————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:08:06,491ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:08:06,491ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676336747011"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:08:36,506ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:08:36,506ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676336747011"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:10:28,355————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:10:33,783Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:10:33,940Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:10:33,940Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:10:33,941Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:10:33,942Scheduler MyScheduler_$_DESKTOP-9EB22GD1676336727785 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:10:33,951dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:10:33,953{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:10:33,964{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:10:33,964dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:10:41 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:10:41,490HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:10:41,516Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 20308 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:10:41,517The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:10:44,885Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:10:44,890Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:10:45,249Finished Spring Data repository scanning in 336 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:10:45,446 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:10:45,446 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:10:45,447 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:10:45,694register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,695register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,695register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,696register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,697register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,697register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:45,697register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:10:46,099Bean '(inner bean)#76134b9b#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,105Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,105Bean '(inner bean)#76134b9b#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,106Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,107Bean '(inner bean)#76134b9b#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,108Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,109Bean '(inner bean)#76134b9b#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,109Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,110Bean '(inner bean)#76134b9b#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,111Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,112Bean '(inner bean)#76134b9b#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,112Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,113Bean '(inner bean)#76134b9b#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,114Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,114Bean '(inner bean)#76134b9b#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,115Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,116Bean '(inner bean)#76134b9b#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,117Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,117Bean '(inner bean)#76134b9b' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,118Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,139Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,142Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,170Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,171Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,174Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,178Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,180Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,181Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,182Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,216Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,219Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,221Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/437490503] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,351Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,452Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,457Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,459Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$18fd414e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,778Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,783Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$234f6a26] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,791Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:46,850Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:47,101===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:10:47,104===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:10:47,110Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:47,118Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:47,148Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:47,179Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$ccd9d705] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:47,181Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:10:47,613Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:10:47,629Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:10:47,630Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:10:47,630Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:10:47,940Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:10:47,940Root WebApplicationContext: initialization completed in 6356 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:10:48,100 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:10:49,065{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:10:49,067dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:10:49,067dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:10:52,128 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:10:53,341Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:10:53,344Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:10:53,358Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:10:53,358Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:10:53,363Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:10:53,366JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:10:53,367Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337053343' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:10:53,367Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:10:53,367Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:10:53,368JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1e8c9083setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:10:55,020 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:10:56,978Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:10:57,113 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:10:58,229Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:10:58,253Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:11:00,186Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:11:00,201Started LinkageSystemApplication in 19.601 seconds (JVM running for 20.967)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:11:00,209 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:11:00,330 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:11:00,870Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:11:00,870Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:11:00,873Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:11:01,190Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:11:01,424Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 started.startQuartzScheduler.java547
INFO2023-02-14 09:11:20,863————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:12:00,408Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:12:00,553Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:12:00,554Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:12:00,554Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:12:00,555Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337053343 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:12:00,561dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:12:00,563{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:12:00,571{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:12:00,571dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:12:08 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:12:08,229HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:12:08,254Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 19432 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:12:08,255The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:12:11,647Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:12:11,652Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:12:12,017Finished Spring Data repository scanning in 341 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:12:12,214 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:12:12,215 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:12:12,216 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:12:12,465register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,465register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,466register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,467register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:12:12,852Bean '(inner bean)#1f48fa72#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,858Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,859Bean '(inner bean)#1f48fa72#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,860Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,861Bean '(inner bean)#1f48fa72#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,862Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,862Bean '(inner bean)#1f48fa72#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,863Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,864Bean '(inner bean)#1f48fa72#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,865Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,865Bean '(inner bean)#1f48fa72#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,866Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,866Bean '(inner bean)#1f48fa72#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,867Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,868Bean '(inner bean)#1f48fa72#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,869Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,869Bean '(inner bean)#1f48fa72#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,870Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,870Bean '(inner bean)#1f48fa72' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,871Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,894Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,897Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,922Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,924Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,927Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,930Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,932Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,933Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,934Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,967Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,972Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:12,972Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/515244925] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,099Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,198Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,203Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,205Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6015d6a8] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,518Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,524Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6a67ff80] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,532Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,586Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,838===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:12:13,841===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:12:13,846Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,854Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,884Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,912Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$13f26c5f] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:13,915Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:12:14,338Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:12:14,353Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:12:14,354Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:12:14,354Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:12:14,661Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:12:14,661Root WebApplicationContext: initialization completed in 6341 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:12:14,825 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:12:15,892{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:12:15,894dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:12:15,894dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:12:18,973 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:12:20,210Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:12:20,213Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:12:20,227Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:12:20,227Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:12:20,231Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:12:20,235JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:12:20,235Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337140212' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:12:20,236Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:12:20,236Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:12:20,236JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3956df0asetJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:12:22,038 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:12:24,013Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:12:24,141 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:12:25,271Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:12:25,297Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:12:27,237Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:12:27,252Started LinkageSystemApplication in 19.9 seconds (JVM running for 21.263)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:12:27,260 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:12:27,389 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:12:27,631Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:12:27,631Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:12:27,634Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:12:28,243Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:12:28,544Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 started.startQuartzScheduler.java547
INFO2023-02-14 09:12:29,282————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:15:04,718Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:15:04,879Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:15:04,881Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:15:04,882Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:15:04,883Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337140212 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:15:04,890dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:15:04,894{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:15:04,903{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:15:04,904dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:15:12 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:15:12,525HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:15:12,553Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 19176 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:15:12,554The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:15:16,054Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:15:16,058Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:15:16,433Finished Spring Data repository scanning in 350 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:15:16,629 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:15:16,630 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:15:16,631 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:15:16,885register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,886register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:16,887register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:15:17,284Bean '(inner bean)#45f1413c#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,290Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,290Bean '(inner bean)#45f1413c#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,291Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,292Bean '(inner bean)#45f1413c#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,293Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,294Bean '(inner bean)#45f1413c#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,295Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,295Bean '(inner bean)#45f1413c#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,296Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,297Bean '(inner bean)#45f1413c#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,298Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,299Bean '(inner bean)#45f1413c#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,300Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,300Bean '(inner bean)#45f1413c#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,301Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,302Bean '(inner bean)#45f1413c#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,302Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,303Bean '(inner bean)#45f1413c' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,303Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,328Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,331Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,361Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,363Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,365Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,369Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,372Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,374Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,375Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,410Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,414Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,415Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/378838522] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,549Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,648Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,653Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,655Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$3cea07cf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,971Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,976Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$473c30a7] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:17,984Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,043Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,298===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:15:18,301===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:15:18,306Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,314Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,343Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,372Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$f0c69d86] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,375Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:15:18,819Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:15:18,838Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:15:18,839Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:15:18,839Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:15:19,163Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:15:19,163Root WebApplicationContext: initialization completed in 6543 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:15:19,327 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:15:20,356{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:15:20,357dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:15:20,358dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:15:23,455 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:15:24,674Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:15:24,677Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:15:24,689Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:15:24,690Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:15:24,694Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:15:24,697JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:15:24,698Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337324676' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:15:24,699Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:15:24,699Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:15:24,699JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@68312b85setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:15:26,476 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:15:28,503Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:15:28,650 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:15:29,883Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:15:29,910Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:15:31,992Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:15:32,007Started LinkageSystemApplication in 20.386 seconds (JVM running for 21.825)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:15:32,016 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:15:32,141 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:15:32,671Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:15:32,673Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:15:32,675Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:15:33,001Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:15:34,317————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:16:13,999Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:16:14,001Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337324676 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:16:14,001Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337324676 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:16:14,004Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337324676 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:16:14,010dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:16:14,013{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:16:14,021{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:16:14,022dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:16:21 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:16:21,743HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:16:21,773Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 17688 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:16:21,774The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:16:25,405Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:16:25,409Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:16:25,801Finished Spring Data repository scanning in 363 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:16:26,015 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:16:26,015 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:16:26,016 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:16:26,268register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,269register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,270register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:16:26,703Bean '(inner bean)#11015ca0#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,709Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,710Bean '(inner bean)#11015ca0#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,711Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,712Bean '(inner bean)#11015ca0#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,713Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,714Bean '(inner bean)#11015ca0#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,715Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,715Bean '(inner bean)#11015ca0#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,716Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,717Bean '(inner bean)#11015ca0#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,718Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,718Bean '(inner bean)#11015ca0#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,719Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,720Bean '(inner bean)#11015ca0#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,721Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,721Bean '(inner bean)#11015ca0#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,722Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,722Bean '(inner bean)#11015ca0' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,723Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,747Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,750Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,780Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,781Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,784Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,788Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,791Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,792Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,793Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,831Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,835Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,836Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1316317287] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:26,984Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,102Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,108Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,110Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$f18db37b] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,464Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,470Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$fbdfdc53] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,478Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,538Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,790===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:16:27,793===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:16:27,798Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,808Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,839Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,871Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$a56a4932] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:27,874Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:16:28,335Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:16:28,352Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:16:28,352Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:16:28,352Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:16:28,670Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:16:28,670Root WebApplicationContext: initialization completed in 6821 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:16:28,840 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:16:29,859{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:16:29,861dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:16:29,861dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:16:33,276 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:16:34,557Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:16:34,560Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:16:34,575Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:16:34,575Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:16:34,580Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:16:34,583JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:16:34,584Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337394559' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:16:34,585Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:16:34,585Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:16:34,585JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3979c6e8setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:16:36,220 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:16:38,509Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:16:38,660 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:16:39,806Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:16:39,833Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:16:41,838Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:16:41,853Started LinkageSystemApplication in 21.086 seconds (JVM running for 22.494)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:16:41,861 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:16:41,985 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:16:42,279Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:16:42,279Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:16:42,282Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:16:42,845Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
ERROR2023-02-14 09:17:34,107{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction +
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) +
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) +
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) +
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) +
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) +
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) +
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) +
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) +
INFO2023-02-14 09:17:49,268Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:17:49,269Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337394559 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:17:49,269Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337394559 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:17:49,270Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337394559 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:17:49,275dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:17:49,277{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:17:49,284{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:17:49,285dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:17:56 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:17:57,025HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:17:57,051Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 7908 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:17:57,052The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:18:00,498Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:18:00,503Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:18:00,870Finished Spring Data repository scanning in 342 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:18:01,066 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:18:01,066 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:18:01,067 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:18:01,313register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,314register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,314register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,314register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,315register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:18:01,714Bean '(inner bean)#18811c42#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,720Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,721Bean '(inner bean)#18811c42#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,722Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,722Bean '(inner bean)#18811c42#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,724Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,725Bean '(inner bean)#18811c42#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,725Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,726Bean '(inner bean)#18811c42#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,727Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,728Bean '(inner bean)#18811c42#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,728Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,729Bean '(inner bean)#18811c42#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,730Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,730Bean '(inner bean)#18811c42#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,731Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,732Bean '(inner bean)#18811c42#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,732Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,733Bean '(inner bean)#18811c42' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,733Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,755Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,758Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,784Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,785Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,789Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,792Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,794Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,795Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,796Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,829Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,833Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,834Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/639264440] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:01,967Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,068Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,072Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,074Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$2f74641e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,393Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,399Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$39c68cf6] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,407Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,462Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,724===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:18:02,728===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:18:02,733Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,742Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,772Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,802Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$e350f9d5] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:02,805Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:18:03,231Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:18:03,246Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:18:03,247Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:18:03,247Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:18:03,556Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:18:03,557Root WebApplicationContext: initialization completed in 6437 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:18:03,715 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:18:04,795{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:18:04,796dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:18:04,797dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:18:07,919 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:18:09,205Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:18:09,210Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:18:09,223Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:18:09,224Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:18:09,228Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:18:09,231JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:18:09,232Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337489208' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:18:09,233Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:18:09,233Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:18:09,233JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@30be6a05setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:18:10,990 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:18:13,065Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:18:13,201 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:18:14,329Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:18:14,355Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:18:16,250Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:18:16,267Started LinkageSystemApplication in 20.141 seconds (JVM running for 21.517)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:18:16,275 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:18:16,398 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:18:17,160Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:18:17,160Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:18:17,163Completed initialization in 3 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:18:17,262Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:18:54,614Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:18:54,614Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337489208 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:18:54,615Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337489208 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:18:54,615Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337489208 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:18:54,621dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:18:54,623{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:18:54,631{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:18:54,632dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:19:02 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:19:02,223HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:19:02,250Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 7748 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:19:02,250The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:19:05,729Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:19:05,734Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:19:06,110Finished Spring Data repository scanning in 351 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:19:06,313 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:19:06,313 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:19:06,314 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:19:06,575register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,576register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,577register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,578register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,578register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,578register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:19:06,975Bean '(inner bean)#29519337#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,981Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,982Bean '(inner bean)#29519337#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,983Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,983Bean '(inner bean)#29519337#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,984Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,985Bean '(inner bean)#29519337#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,985Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,986Bean '(inner bean)#29519337#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,987Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,987Bean '(inner bean)#29519337#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,988Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,988Bean '(inner bean)#29519337#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,989Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,990Bean '(inner bean)#29519337#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,991Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,991Bean '(inner bean)#29519337#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,992Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,993Bean '(inner bean)#29519337' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:06,993Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,017Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,020Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,046Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,047Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,050Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,054Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,057Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,058Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,059Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,094Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,098Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,099Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/515495578] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,230Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,330Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,335Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,338Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$516ab456] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,688Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,694Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$5bbcdd2e] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,703Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:07,762Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:08,008===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:19:08,010===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:19:08,015Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:08,024Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:08,053Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:08,082Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$5474a0d] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:08,085Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:19:08,523Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:19:08,538Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:19:08,538Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:19:08,538Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:19:08,853Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:19:08,853Root WebApplicationContext: initialization completed in 6521 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:19:09,013 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:19:10,024{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:19:10,025dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:19:10,026dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:19:13,140 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:19:14,375Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:19:14,378Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:19:14,392Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:19:14,392Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:19:14,396Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:19:14,399JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:19:14,400Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676337554377' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:19:14,401Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:19:14,401Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:19:14,401JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@48463900setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:19:16,021 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:19:18,304Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:19:18,440 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:19:19,510Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:19:19,536Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:19:21,543Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:19:21,558Started LinkageSystemApplication in 20.234 seconds (JVM running for 21.592)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:19:21,567 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:19:21,690 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:19:22,047Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:19:22,047Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:19:22,049Completed initialization in 1 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:19:22,557Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:19:24,567————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:19:28,259————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 09:19:31,611————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
ERROR2023-02-14 09:20:13,754{conn-10005, pstmt-20000} execute error. SELECT * FROM QRTZ_LOCKS WHERE SCHED_NAME = 'MyScheduler' AND LOCK_NAME = ? FOR UPDATEstatementLogErrorSlf4jLogFilter.java149
com.mysql.cj.jdbc.exceptions.MySQLTransactionRollbackException: Lock wait timeout exceeded; try restarting transaction +
    at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:123) +
    at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeInternal(ClientPreparedStatement.java:916) +
    at com.mysql.cj.jdbc.ClientPreparedStatement.executeQuery(ClientPreparedStatement.java:972) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3240) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.wall.WallFilter.preparedStatement_executeQuery(WallFilter.java:647) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.filter.FilterEventAdapter.preparedStatement_executeQuery(FilterEventAdapter.java:465) +
    at com.alibaba.druid.filter.FilterChainImpl.preparedStatement_executeQuery(FilterChainImpl.java:3237) +
    at com.alibaba.druid.proxy.jdbc.PreparedStatementProxyImpl.executeQuery(PreparedStatementProxyImpl.java:181) +
    at com.alibaba.druid.pool.DruidPooledPreparedStatement.executeQuery(DruidPooledPreparedStatement.java:227) +
    at org.quartz.impl.jdbcjobstore.StdRowLockSemaphore.executeSQL(StdRowLockSemaphore.java:123) +
    at org.quartz.impl.jdbcjobstore.DBSemaphore.obtainLock(DBSemaphore.java:113) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.doCheckin(JobStoreSupport.java:3335) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.manage(JobStoreSupport.java:3935) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport$ClusterManager.initialize(JobStoreSupport.java:3920) +
    at org.quartz.impl.jdbcjobstore.JobStoreSupport.schedulerStarted(JobStoreSupport.java:692) +
    at org.quartz.core.QuartzScheduler.start(QuartzScheduler.java:539) +
    at org.quartz.impl.StdScheduler.start(StdScheduler.java:142) +
    at org.springframework.scheduling.quartz.SchedulerFactoryBean$1.run(SchedulerFactoryBean.java:753) +
INFO2023-02-14 09:20:15,734ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:20:15,734ClusterManager: Scanning for instance "WIN-DH86GAI2CNG1676294701465"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:20:15,762Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 started.startQuartzScheduler.java547
WARN2023-02-14 09:22:53,443This scheduler instance (DESKTOP-9EB22GD1676337554377) is still active but was recovered by another instance in the cluster. This may cause inconsistent behavior.findFailedInstancesJobStoreSupport.java3411
INFO2023-02-14 09:27:07,749ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:27:07,749ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676336747011"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:28:22,803ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:28:22,804ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676338037449"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:45:08,383ClusterManager: detected 1 failed or restarted instances.logWarnIfNonZeroJobStoreSupport.java3644
INFO2023-02-14 09:45:08,384ClusterManager: Scanning for instance "DESKTOP-J3KC78R1676338037449"'s failed in-progress jobs.clusterRecoverJobStoreSupport.java3503
INFO2023-02-14 09:45:14,968Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:45:15,107Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 09:45:15,108Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 09:45:15,108Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 paused.standbyQuartzScheduler.java585
INFO2023-02-14 09:45:15,109Scheduler MyScheduler_$_DESKTOP-9EB22GD1676337554377 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 09:45:15,115dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 09:45:15,117{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 09:45:15,124{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 09:45:15,124dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 09:45:22 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 09:45:23,088HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 09:45:23,113Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 420 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 09:45:23,113The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 09:45:26,502Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 09:45:26,506Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 09:45:26,875Finished Spring Data repository scanning in 344 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 09:45:27,072 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 09:45:27,073 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 09:45:27,074 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 09:45:27,324register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,325register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,325register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,326register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,327register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,327register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,327register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 09:45:27,725Bean '(inner bean)#2ce47652#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,731Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,732Bean '(inner bean)#2ce47652#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,733Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,733Bean '(inner bean)#2ce47652#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,735Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,735Bean '(inner bean)#2ce47652#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,736Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,737Bean '(inner bean)#2ce47652#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,737Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,738Bean '(inner bean)#2ce47652#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,739Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,739Bean '(inner bean)#2ce47652#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,740Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,741Bean '(inner bean)#2ce47652#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,742Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,742Bean '(inner bean)#2ce47652#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,743Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,743Bean '(inner bean)#2ce47652' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,744Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,766Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,769Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,796Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,797Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,800Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,803Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,805Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,807Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,808Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,842Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,845Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,846Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/1038014730] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:27,976Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,074Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,079Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,080Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$d4122407] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,404Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,410Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$de644cdf] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,418Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,475Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,751===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 09:45:28,754===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 09:45:28,760Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,768Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,798Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,827Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$87eeb9be] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:28,830Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 09:45:29,299Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 09:45:29,315Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:45:29,316Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 09:45:29,316Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 09:45:29,645Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 09:45:29,645Root WebApplicationContext: initialization completed in 6468 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 09:45:29,809 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 09:45:30,855{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 09:45:30,856dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 09:45:30,857dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 09:45:34,008 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 09:45:35,243Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 09:45:35,246Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 09:45:35,260Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 09:45:35,260Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 09:45:35,264Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 09:45:35,268JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 09:45:35,269Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676339135245' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 09:45:35,269Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 09:45:35,269Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 09:45:35,269JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@52d9a150setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 09:45:36,945 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 09:45:38,969Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 09:45:39,102 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 09:45:40,223Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 09:45:40,248Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 09:45:42,174Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 09:45:42,190Started LinkageSystemApplication in 19.995 seconds (JVM running for 21.419)logStartedStartupInfoLogger.java61
INFO2023-02-14 09:45:42,199 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 09:45:42,325 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 09:45:42,858Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 09:45:42,858Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 09:45:42,861Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 09:45:43,184Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 09:45:43,408Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 started.startQuartzScheduler.java547
INFO2023-02-14 09:45:51,047————————身份认证失败——————————IP地址: 192.168.0.173,URL:/linkage-boot/errordoGetAuthenticationInfoShiroRealm.java97
INFO2023-02-14 10:02:08,572Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 paused.standbyQuartzScheduler.java585
INFO2023-02-14 10:02:08,718Shutting down Quartz SchedulerdestroySchedulerFactoryBean.java847
INFO2023-02-14 10:02:08,719Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 shutting down.shutdownQuartzScheduler.java666
INFO2023-02-14 10:02:08,719Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 paused.standbyQuartzScheduler.java585
INFO2023-02-14 10:02:08,720Scheduler MyScheduler_$_DESKTOP-9EB22GD1676339135245 shutdown complete.shutdownQuartzScheduler.java740
INFO2023-02-14 10:02:08,725dynamic-datasource start closing ....destroyDynamicRoutingDataSource.java217
INFO2023-02-14 10:02:08,728{dataSource-1} closing ...closeDruidDataSource.java2029
INFO2023-02-14 10:02:08,735{dataSource-1} closedcloseDruidDataSource.java2101
INFO2023-02-14 10:02:08,736dynamic-datasource all closed success,byedestroyDynamicRoutingDataSource.java221
+ + + + Logback Log Messages + + + + +
+

Log session start time Tue Feb 14 10:02:16 CST 2023

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
LevelDateMessageMethodOfCallerFileOfCallerLineOfCaller
INFO2023-02-14 10:02:16,609HV000001: Hibernate Validator 6.2.5.Final<clinit>Version.java21
INFO2023-02-14 10:02:16,636Starting LinkageSystemApplication using Java 1.8.0_281 on DESKTOP-9EB22GD with PID 8128 (D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot\linkage-module-system\linkage-system-start\target\classes started by admin in D:\tengxi\tiantaixianghe\TTXH-MES\linkage-boot)logStartingStartupInfoLogger.java55
INFO2023-02-14 10:02:16,637The following 1 profile is active: "dev"logStartupProfileInfoSpringApplication.java651
INFO2023-02-14 10:02:20,122Multiple Spring Data modules found, entering strict repository configuration modemultipleStoresDetectedRepositoryConfigurationDelegate.java262
INFO2023-02-14 10:02:20,127Bootstrapping Spring Data Redis repositories in DEFAULT mode.registerRepositoriesInRepositoryConfigurationDelegate.java132
INFO2023-02-14 10:02:20,507Finished Spring Data repository scanning in 355 ms. Found 0 Redis repository interfaces.registerRepositoriesInRepositoryConfigurationDelegate.java201
INFO2023-02-14 10:02:20,733 ******************* init miniDao config [ begin ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java23
INFO2023-02-14 10:02:20,733 ------ minidao.base-package ------- org.jeecg.modules.jmreport.*miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java25
INFO2023-02-14 10:02:20,734 ******************* init miniDao config [ end ] *********************** miniDaoBeanScannerConfigurerMinidaoAutoConfiguration.java42
INFO2023-02-14 10:02:20,969register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDataSourceDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbFieldDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,970register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDbParamDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportDictItemDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportLinkDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportMapDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:20,971register minidao name is { org.jeecg.modules.jmreport.desreport.dao.JimuReportShareDao }doScanMiniDaoClassPathMapperScanner.java48
INFO2023-02-14 10:02:21,365Bean '(inner bean)#12be4f83#9' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,371Bean 'jimuReportShareDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,372Bean '(inner bean)#12be4f83#8' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,373Bean 'jimuReportMapDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,374Bean '(inner bean)#12be4f83#7' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,376Bean 'jimuReportLinkDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,376Bean '(inner bean)#12be4f83#6' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,377Bean 'jimuReportDictItemDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,378Bean '(inner bean)#12be4f83#5' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,379Bean 'jimuReportDictDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,379Bean '(inner bean)#12be4f83#4' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,380Bean 'jimuReportDbParamDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,381Bean '(inner bean)#12be4f83#3' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,382Bean 'jimuReportDbFieldDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,382Bean '(inner bean)#12be4f83#2' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,383Bean 'jimuReportDbDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,384Bean '(inner bean)#12be4f83#1' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,384Bean 'jimuReportDataSourceDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,385Bean '(inner bean)#12be4f83' of type [org.jeecgframework.minidao.aop.MiniDaoHandler] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,385Bean 'jimuReportDao' of type [org.jeecgframework.minidao.factory.MiniDaoBeanFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,408Bean 'spring.redis-org.springframework.boot.autoconfigure.data.redis.RedisProperties' of type [org.springframework.boot.autoconfigure.data.redis.RedisProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,411Bean 'org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration' of type [org.springframework.boot.autoconfigure.data.redis.LettuceConnectionConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,438Bean 'org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,439Bean 'org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusMetricsExportAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,442Bean 'management.metrics.export.prometheus-org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,445Bean 'prometheusConfig' of type [org.springframework.boot.actuate.autoconfigure.metrics.export.prometheus.PrometheusPropertiesConfigAdapter] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,448Bean 'collectorRegistry' of type [io.prometheus.client.CollectorRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,449Bean 'org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration' of type [org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,450Bean 'micrometerClock' of type [io.micrometer.core.instrument.Clock$1] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,486Bean 'prometheusMeterRegistry' of type [io.micrometer.prometheus.PrometheusMeterRegistry] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,490Bean 'micrometerOptions' of type [io.lettuce.core.metrics.MicrometerOptions] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,491Bean 'lettuceMetrics' of type [org.springframework.boot.actuate.autoconfigure.metrics.redis.LettuceMetricsAutoConfiguration$$Lambda$450/2025652936] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,622Bean 'lettuceClientResources' of type [io.lettuce.core.resource.DefaultClientResources] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,723Bean 'redisConnectionFactory' of type [org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,728Bean 'jeecgBaseConfig' of type [org.jeecg.config.JeecgBaseConfig] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:21,730Bean 'shiroConfig' of type [org.jeecg.config.shiro.ShiroConfig$$EnhancerBySpringCGLIB$$6297b105] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,066Bean 'spring.datasource.dynamic-com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,071Bean 'com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration' of type [com.baomidou.dynamic.datasource.spring.boot.autoconfigure.DynamicDataSourceAutoConfiguration$$EnhancerBySpringCGLIB$$6ce9d9dd] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,080Bean 'dsProcessor' of type [com.baomidou.dynamic.datasource.processor.DsHeaderProcessor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,136Bean 'shiroRealm' of type [org.jeecg.config.shiro.ShiroRealm] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,384===============(1)创建缓存管理器RedisCacheManagerredisCacheManagerShiroConfig.java227
INFO2023-02-14 10:02:22,387===============(2)创建RedisManager,连接Redis..redisManagerShiroConfig.java245
INFO2023-02-14 10:02:22,392Bean 'redisManager' of type [org.crazycake.shiro.RedisManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,400Bean 'securityManager' of type [org.apache.shiro.web.mgt.DefaultWebSecurityManager] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,429Bean 'authorizationAttributeSourceAdvisor' of type [org.apache.shiro.spring.security.interceptor.AuthorizationAttributeSourceAdvisor] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,458Bean 'org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration' of type [org.apache.shiro.spring.boot.autoconfigure.ShiroBeanAutoConfiguration$$EnhancerBySpringCGLIB$$167446bc] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,460Bean 'eventBus' of type [org.apache.shiro.event.support.DefaultEventBus] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)postProcessAfterInitializationPostProcessorRegistrationDelegate.java376
INFO2023-02-14 10:02:22,892Tomcat initialized with port(s): 8080 (http)initializeTomcatWebServer.java108
INFO2023-02-14 10:02:22,906Initializing ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 10:02:22,907Starting service [Tomcat]logDirectJDKLog.java173
INFO2023-02-14 10:02:22,907Starting Servlet engine: [Apache Tomcat/9.0.69]logDirectJDKLog.java173
INFO2023-02-14 10:02:23,220Initializing Spring embedded WebApplicationContextlogDirectJDKLog.java173
INFO2023-02-14 10:02:23,221Root WebApplicationContext: initialization completed in 6513 msprepareWebApplicationContextServletWebServerApplicationContext.java290
INFO2023-02-14 10:02:23,391 Init JimuReport Config [ Token Interceptor & Resource Locations ] afterPropertiesSetJimuReportConfiguration.java99
INFO2023-02-14 10:02:27,962{dataSource-1,master} initedinitDruidDataSource.java994
INFO2023-02-14 10:02:27,963dynamic-datasource - load a datasource named [master] successaddDataSourceDynamicRoutingDataSource.java132
INFO2023-02-14 10:02:27,964dynamic-datasource initial loaded [1] datasource,primary datasource named [master]afterPropertiesSetDynamicRoutingDataSource.java237
INFO2023-02-14 10:02:31,078 --- redis config init --- redisTemplateRedisConfig.java56
INFO2023-02-14 10:02:32,320Using default implementation for ThreadExecutorinstantiateStdSchedulerFactory.java1220
INFO2023-02-14 10:02:32,323Job execution threads will use class loader of thread: maininitializeSimpleThreadPool.java268
INFO2023-02-14 10:02:32,337Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl<init>SchedulerSignalerImpl.java61
INFO2023-02-14 10:02:32,338Quartz Scheduler v.2.3.2 created.<init>QuartzScheduler.java229
INFO2023-02-14 10:02:32,342Using db table-based data access locking (synchronization).initializeJobStoreSupport.java672
INFO2023-02-14 10:02:32,345JobStoreCMT initialized.initializeJobStoreCMT.java145
INFO2023-02-14 10:02:32,346Scheduler meta-data: Quartz Scheduler (v2.3.2) 'MyScheduler' with instanceId 'DESKTOP-9EB22GD1676340152322' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.springframework.scheduling.quartz.LocalDataSourceJobStore' - which supports persistence. and is clustered. +initializeQuartzScheduler.java294
INFO2023-02-14 10:02:32,347Quartz scheduler 'MyScheduler' initialized from an externally provided properties instance.instantiateStdSchedulerFactory.java1374
INFO2023-02-14 10:02:32,347Quartz scheduler version: 2.3.2instantiateStdSchedulerFactory.java1378
INFO2023-02-14 10:02:32,347JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@416bff93setJobFactoryQuartzScheduler.java2293
INFO2023-02-14 10:02:33,943 Init JimuReport Config [ 线程池 ] afterPropertiesSetJmReportExecutorConfig.java42
INFO2023-02-14 10:02:36,092Exposing 2 endpoint(s) beneath base path '/actuator'<init>EndpointLinksResolver.java58
INFO2023-02-14 10:02:36,230 Init CodeGenerate Config [ Get Db Config From application.yml ] initCodeGenerateDbConfigCodeGenerateDbConfig.java46
INFO2023-02-14 10:02:37,295Starting ProtocolHandler ["http-nio-8080"]logDirectJDKLog.java173
INFO2023-02-14 10:02:37,320Tomcat started on port(s): 8080 (http) with context path '/linkage-boot'startTomcatWebServer.java220
INFO2023-02-14 10:02:39,301Will start Quartz Scheduler [MyScheduler] in 1 secondsstartSchedulerSchedulerFactoryBean.java734
INFO2023-02-14 10:02:39,317Started LinkageSystemApplication in 23.669 seconds (JVM running for 25.106)logStartedStartupInfoLogger.java61
INFO2023-02-14 10:02:39,324 Init Code Generate Template [ 检测如果是JAR启动环境,Copy模板到config目录 ] onApplicationEventCodeTemplateInitListener.java30
INFO2023-02-14 10:02:39,448 +---------------------------------------------------------- + Application Linkage-Boot is running! Access URLs: + Local: http://localhost:8080/linkage-boot/ + External: http://192.168.0.173:8080/linkage-boot/ + Swagger文档: http://192.168.0.173:8080/linkage-boot/doc.html +----------------------------------------------------------mainLinkageSystemApplication.java35
INFO2023-02-14 10:02:39,834Initializing Spring DispatcherServlet 'dispatcherServlet'logDirectJDKLog.java173
INFO2023-02-14 10:02:39,835Initializing Servlet 'dispatcherServlet'initServletBeanFrameworkServlet.java525
INFO2023-02-14 10:02:39,837Completed initialization in 2 msinitServletBeanFrameworkServlet.java547
INFO2023-02-14 10:02:40,308Starting Quartz Scheduler now, after delay of 1 secondsrunSchedulerFactoryBean.java750
INFO2023-02-14 10:02:40,611Scheduler MyScheduler_$_DESKTOP-9EB22GD1676340152322 started.startQuartzScheduler.java547