Commit b545e6d1 by henry

修改配置文件

1 parent 106ee2ab
Showing with 89 additions and 83 deletions
...@@ -9,4 +9,9 @@ ...@@ -9,4 +9,9 @@
## arch-base 基础服务-包括工具类-及对象实体 ## arch-base 基础服务-包括工具类-及对象实体
## vo(View Object):视图对象,用于展示层 ## vo(View Object):视图对象,用于展示层
## dto(Data Transfer Object):数据传输对象 ## dto(Data Transfer Object):数据传输对象
## pojo(Persistent Object):持久化对象 ## pojo(Persistent Object):持久化对象
\ No newline at end of file # 方便统一加密,所有请求均用POST请求
```
参数统一在BODY中传递
```
\ No newline at end of file
...@@ -3,7 +3,7 @@ package org.arch.config; ...@@ -3,7 +3,7 @@ package org.arch.config;
import com.alibaba.cloud.commons.lang.StringUtils; import com.alibaba.cloud.commons.lang.StringUtils;
import net.minidev.json.JSONObject; import net.minidev.json.JSONObject;
import org.arch.service.RedisService; import org.arch.overall.service.RedisService;
import org.arch.util.JwtUtil; import org.arch.util.JwtUtil;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
......
package org.arch.service; package org.arch.overall.service;
import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject; import com.alibaba.fastjson.JSONObject;
......
package org.arch; package org.arch.overall;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
......
package org.arch.controller; package org.arch.overall.controller;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
...@@ -10,8 +10,8 @@ import org.arch.log.logenum.LogOperTypeEnum; ...@@ -10,8 +10,8 @@ import org.arch.log.logenum.LogOperTypeEnum;
import org.arch.log.logenum.LogTypeEnum; import org.arch.log.logenum.LogTypeEnum;
import org.arch.modules.archoverall.dto.ArchiElementDTO; import org.arch.modules.archoverall.dto.ArchiElementDTO;
import org.arch.modules.archoverall.dto.BatchUpdateDTO; import org.arch.modules.archoverall.dto.BatchUpdateDTO;
import org.arch.entity.ArchiElement; import org.arch.overall.entity.ArchiElement;
import org.arch.service.ArchiElementService; import org.arch.overall.service.ArchiElementService;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
@Api(tags = {"元素管理"}) @Api(tags = {"元素管理"})
......
package org.arch.entity; package org.arch.overall.entity;
import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
......
package org.arch.entity; package org.arch.overall.entity;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableId;
......
package org.arch.mapper; package org.arch.overall.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.arch.entity.ArchiEleProperty; import org.arch.overall.entity.ArchiEleProperty;
public interface ArchiElePropertyMapper extends BaseMapper<ArchiEleProperty> { public interface ArchiElePropertyMapper extends BaseMapper<ArchiEleProperty> {
......
package org.arch.mapper; package org.arch.overall.mapper;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.github.yulichang.base.MPJBaseMapper; import com.github.yulichang.base.MPJBaseMapper;
import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Param;
import org.arch.modules.archoverall.dto.ArchiElementDTO; import org.arch.modules.archoverall.dto.ArchiElementDTO;
import org.arch.entity.ArchiElement; import org.arch.overall.entity.ArchiElement;
import java.util.List; import java.util.List;
public interface ArchiElementMapper extends MPJBaseMapper<ArchiElement> { public interface ArchiElementMapper extends MPJBaseMapper<ArchiElement> {
......
package org.arch.mapper; package org.arch.overall.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper;
......
package org.arch.service; package org.arch.overall.service;
import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.IService; import com.baomidou.mybatisplus.extension.service.IService;
import org.arch.modules.archoverall.dto.ArchiElementDTO; import org.arch.modules.archoverall.dto.ArchiElementDTO;
import org.arch.modules.archoverall.dto.BatchUpdateDTO; import org.arch.modules.archoverall.dto.BatchUpdateDTO;
import org.arch.entity.ArchiEleProperty; import org.arch.overall.entity.ArchiEleProperty;
import org.arch.entity.ArchiElement; import org.arch.overall.entity.ArchiElement;
import java.util.List; import java.util.List;
......
package org.arch.service.impl; package org.arch.overall.service.impl;
import cn.hutool.core.lang.UUID; import cn.hutool.core.lang.UUID;
...@@ -10,13 +10,13 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers; ...@@ -10,13 +10,13 @@ import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.PageDTO; import com.baomidou.mybatisplus.extension.plugins.pagination.PageDTO;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.github.xiaoymin.knife4j.core.util.StrUtil; import com.github.xiaoymin.knife4j.core.util.StrUtil;
import org.arch.entity.ArchiEleProperty; import org.arch.overall.entity.ArchiEleProperty;
import org.arch.entity.ArchiElement; import org.arch.overall.entity.ArchiElement;
import org.arch.mapper.ArchiElePropertyMapper; import org.arch.overall.mapper.ArchiElePropertyMapper;
import org.arch.mapper.ArchiElementMapper; import org.arch.overall.mapper.ArchiElementMapper;
import org.arch.modules.archoverall.dto.ArchiElementDTO; import org.arch.modules.archoverall.dto.ArchiElementDTO;
import org.arch.modules.archoverall.dto.BatchUpdateDTO; import org.arch.modules.archoverall.dto.BatchUpdateDTO;
import org.arch.service.ArchiElementService; import org.arch.overall.service.ArchiElementService;
import org.arch.utils.VersionUtil; import org.arch.utils.VersionUtil;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.arch.mapper.ArchiElementMapper"> <mapper namespace="org.arch.overall.mapper.ArchiElementMapper">
<resultMap id="BaseResultMap" type="org.arch.entity.ArchiElement"> <resultMap id="BaseResultMap" type="org.arch.overall.entity.ArchiElement">
<result column="element_id" property="elementId"/> <result column="element_id" property="elementId"/>
<result column="element_code" property="elementCode"/> <result column="element_code" property="elementCode"/>
<result column="element_name" property="elementName"/> <result column="element_name" property="elementName"/>
...@@ -24,12 +24,12 @@ ...@@ -24,12 +24,12 @@
<result column="archi_belong_code" property="archiBelongCode"/> <result column="archi_belong_code" property="archiBelongCode"/>
</resultMap> </resultMap>
<select id="initVersion" resultType="org.arch.entity.ArchiElement"> <select id="initVersion" resultType="org.arch.overall.entity.ArchiElement">
SELECT CONCAT(DATE_FORMAT(NOW(), '%Y%m%d'), '-V', YEAR(NOW()) - 2023 - 1, '.', DATE_FORMAT(NOW(), '%m'), '.0') AS version; SELECT CONCAT(DATE_FORMAT(NOW(), '%Y%m%d'), '-V', YEAR(NOW()) - 2023 - 1, '.', DATE_FORMAT(NOW(), '%m'), '.0') AS version;
</select> </select>
<!--元素列表--> <!--元素列表-->
<select id="gtArchiElement" resultType="org.arch.entity.ArchiElement"> <select id="gtArchiElement" resultType="org.arch.overall.entity.ArchiElement">
select se.*, select se.*,
gm.graph_name as iconName, gm.graph_name as iconName,
gm.icon gm.icon
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
</select> </select>
<!--根据元素名称查询元素--> <!--根据元素名称查询元素-->
<select id="gtArcEleByName" resultType="org.arch.entity.ArchiElement"> <select id="gtArcEleByName" resultType="org.arch.overall.entity.ArchiElement">
select se.element_id, select se.element_id,
se.element_name, se.element_name,
se.archi_belong_id, se.archi_belong_id,
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
order by se.create_time desc order by se.create_time desc
</select> </select>
<select id="gtEleList" resultType="org.arch.entity.ArchiElement"> <select id="gtEleList" resultType="org.arch.overall.entity.ArchiElement">
select se.*, select se.*,
gm.graph_name as iconName, gm.graph_name as iconName,
gm.icon gm.icon
...@@ -118,7 +118,7 @@ ...@@ -118,7 +118,7 @@
order by se.create_time desc order by se.create_time desc
</select> </select>
<select id="maxVer" resultType="org.arch.entity.ArchiElement"> <select id="maxVer" resultType="org.arch.overall.entity.ArchiElement">
SELECT a.version SELECT a.version
FROM archi_element a FROM archi_element a
<where> <where>
...@@ -169,7 +169,7 @@ ...@@ -169,7 +169,7 @@
<!--获取最新版本--> <!--获取最新版本-->
<select id="getVersion" resultType="java.lang.String"> <select id="getVersion" resultType="java.lang.String">
set @i := (<include refid="org.arch.mapper.VersionInitMapper.versionInit"/>); set @i := (<include refid="org.arch.overall.mapper.VersionInitMapper.versionInit"/>);
select ifnull(version, @i) from archi_element where element_id = #{elementId} for update select ifnull(version, @i) from archi_element where element_id = #{elementId} for update
</select> </select>
</mapper> </mapper>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.arch.mapper.VersionInitMapper"> <mapper namespace="org.arch.overall.mapper.VersionInitMapper">
<sql id="versionInit"> <sql id="versionInit">
SELECT CONCAT(DATE_FORMAT(NOW(), '%Y%m%d'), '-V', YEAR(NOW()) - 2023, '.', DATE_FORMAT(NOW(), '%m'), '.0') AS version SELECT CONCAT(DATE_FORMAT(NOW(), '%Y%m%d'), '-V', YEAR(NOW()) - 2023, '.', DATE_FORMAT(NOW(), '%m'), '.0') AS version
</sql> </sql>
......
...@@ -931,7 +931,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -931,7 +931,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
...@@ -1039,7 +1039,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -1039,7 +1039,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
...@@ -1147,7 +1147,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -1147,7 +1147,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
...@@ -1255,7 +1255,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -1255,7 +1255,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
......
...@@ -14174,7 +14174,7 @@ log: ...@@ -14174,7 +14174,7 @@ log:
2024-07-03 14:37:18.151 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP] 2024-07-03 14:37:18.151 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP]
2024-07-03 14:37:18.153 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP] 2024-07-03 14:37:18.153 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP]
2024-07-03 14:37:18.155 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}] 2024-07-03 14:37:18.155 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}]
2024-07-03 14:37:18.189 [main] INFO org.arch.ArchOverallApp:641 - The following profiles are active: dev 2024-07-03 14:37:18.189 [main] INFO org.arch.overall.ArchOverallApp:641 - The following profiles are active: dev
2024-07-03 14:37:19.170 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper 2024-07-03 14:37:19.170 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper
2024-07-03 14:37:19.177 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. 2024-07-03 14:37:19.177 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2024-07-03 14:37:19.178 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch' 2024-07-03 14:37:19.178 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch'
...@@ -14193,11 +14193,11 @@ log: ...@@ -14193,11 +14193,11 @@ log:
2024-07-03 14:37:19.680 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'. 2024-07-03 14:37:19.680 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'.
2024-07-03 14:37:19.680 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface 2024-07-03 14:37:19.680 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface
2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'. 2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'.
2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.mapper.ArchiElePropertyMapper' mapperInterface 2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.overall.mapper.ArchiElePropertyMapper' mapperInterface
2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'. 2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'.
2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.mapper.ArchiElementMapper' mapperInterface 2024-07-03 14:37:19.681 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.overall.mapper.ArchiElementMapper' mapperInterface
2024-07-03 14:37:19.682 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'. 2024-07-03 14:37:19.682 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'.
2024-07-03 14:37:19.682 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.mapper.VersionInitMapper' mapperInterface 2024-07-03 14:37:19.682 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.overall.mapper.VersionInitMapper' mapperInterface
2024-07-03 14:37:19.683 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'. 2024-07-03 14:37:19.683 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'.
2024-07-03 14:37:19.773 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174 2024-07-03 14:37:19.773 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174
2024-07-03 14:37:19.911 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging. 2024-07-03 14:37:19.911 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging.
...@@ -14262,7 +14262,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -14262,7 +14262,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
...@@ -14578,7 +14578,7 @@ log: ...@@ -14578,7 +14578,7 @@ log:
2024-07-03 14:38:45.744 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP] 2024-07-03 14:38:45.744 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP]
2024-07-03 14:38:45.746 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP] 2024-07-03 14:38:45.746 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP]
2024-07-03 14:38:45.747 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}] 2024-07-03 14:38:45.747 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}]
2024-07-03 14:38:45.777 [main] INFO org.arch.ArchOverallApp:641 - The following profiles are active: dev 2024-07-03 14:38:45.777 [main] INFO org.arch.overall.ArchOverallApp:641 - The following profiles are active: dev
2024-07-03 14:38:46.643 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper 2024-07-03 14:38:46.643 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper
2024-07-03 14:38:46.650 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. 2024-07-03 14:38:46.650 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2024-07-03 14:38:46.652 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch' 2024-07-03 14:38:46.652 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch'
...@@ -14597,11 +14597,11 @@ log: ...@@ -14597,11 +14597,11 @@ log:
2024-07-03 14:38:47.088 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'. 2024-07-03 14:38:47.088 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'.
2024-07-03 14:38:47.088 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface 2024-07-03 14:38:47.088 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface
2024-07-03 14:38:47.089 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'. 2024-07-03 14:38:47.089 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'.
2024-07-03 14:38:47.089 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.mapper.ArchiElePropertyMapper' mapperInterface 2024-07-03 14:38:47.089 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.overall.mapper.ArchiElePropertyMapper' mapperInterface
2024-07-03 14:38:47.089 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'. 2024-07-03 14:38:47.089 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'.
2024-07-03 14:38:47.090 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.mapper.ArchiElementMapper' mapperInterface 2024-07-03 14:38:47.090 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.overall.mapper.ArchiElementMapper' mapperInterface
2024-07-03 14:38:47.090 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'. 2024-07-03 14:38:47.090 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'.
2024-07-03 14:38:47.090 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.mapper.VersionInitMapper' mapperInterface 2024-07-03 14:38:47.090 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.overall.mapper.VersionInitMapper' mapperInterface
2024-07-03 14:38:47.091 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'. 2024-07-03 14:38:47.091 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'.
2024-07-03 14:38:47.173 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174 2024-07-03 14:38:47.173 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174
2024-07-03 14:38:47.278 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging. 2024-07-03 14:38:47.278 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging.
...@@ -14666,7 +14666,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -14666,7 +14666,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
...@@ -14982,7 +14982,7 @@ log: ...@@ -14982,7 +14982,7 @@ log:
2024-07-03 14:39:59.801 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP] 2024-07-03 14:39:59.801 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP]
2024-07-03 14:39:59.802 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP] 2024-07-03 14:39:59.802 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP]
2024-07-03 14:39:59.803 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}] 2024-07-03 14:39:59.803 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}]
2024-07-03 14:39:59.835 [main] INFO org.arch.ArchOverallApp:641 - The following profiles are active: dev 2024-07-03 14:39:59.835 [main] INFO org.arch.overall.ArchOverallApp:641 - The following profiles are active: dev
2024-07-03 14:40:00.667 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper 2024-07-03 14:40:00.667 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper
2024-07-03 14:40:00.673 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. 2024-07-03 14:40:00.673 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2024-07-03 14:40:00.675 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch' 2024-07-03 14:40:00.675 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch'
...@@ -15001,11 +15001,11 @@ log: ...@@ -15001,11 +15001,11 @@ log:
2024-07-03 14:40:01.097 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'. 2024-07-03 14:40:01.097 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'.
2024-07-03 14:40:01.097 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface 2024-07-03 14:40:01.097 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface
2024-07-03 14:40:01.099 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'. 2024-07-03 14:40:01.099 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'.
2024-07-03 14:40:01.099 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.mapper.ArchiElePropertyMapper' mapperInterface 2024-07-03 14:40:01.099 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.overall.mapper.ArchiElePropertyMapper' mapperInterface
2024-07-03 14:40:01.099 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'. 2024-07-03 14:40:01.099 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'.
2024-07-03 14:40:01.100 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.mapper.ArchiElementMapper' mapperInterface 2024-07-03 14:40:01.100 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.overall.mapper.ArchiElementMapper' mapperInterface
2024-07-03 14:40:01.100 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'. 2024-07-03 14:40:01.100 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'.
2024-07-03 14:40:01.100 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.mapper.VersionInitMapper' mapperInterface 2024-07-03 14:40:01.100 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.overall.mapper.VersionInitMapper' mapperInterface
2024-07-03 14:40:01.101 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'. 2024-07-03 14:40:01.101 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'.
2024-07-03 14:40:01.181 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174 2024-07-03 14:40:01.181 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174
2024-07-03 14:40:01.285 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging. 2024-07-03 14:40:01.285 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging.
...@@ -15070,7 +15070,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -15070,7 +15070,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
...@@ -15386,7 +15386,7 @@ log: ...@@ -15386,7 +15386,7 @@ log:
2024-07-03 14:42:37.043 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP] 2024-07-03 14:42:37.043 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP]
2024-07-03 14:42:37.045 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP] 2024-07-03 14:42:37.045 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP]
2024-07-03 14:42:37.046 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}] 2024-07-03 14:42:37.046 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}]
2024-07-03 14:42:37.078 [main] INFO org.arch.ArchOverallApp:641 - The following profiles are active: dev 2024-07-03 14:42:37.078 [main] INFO org.arch.overall.ArchOverallApp:641 - The following profiles are active: dev
2024-07-03 14:42:39.561 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper 2024-07-03 14:42:39.561 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper
2024-07-03 14:42:39.573 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. 2024-07-03 14:42:39.573 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2024-07-03 14:42:39.576 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch' 2024-07-03 14:42:39.576 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch'
...@@ -15405,11 +15405,11 @@ log: ...@@ -15405,11 +15405,11 @@ log:
2024-07-03 14:42:40.356 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'. 2024-07-03 14:42:40.356 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'.
2024-07-03 14:42:40.356 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface 2024-07-03 14:42:40.356 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface
2024-07-03 14:42:40.357 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'. 2024-07-03 14:42:40.357 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'.
2024-07-03 14:42:40.357 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.mapper.ArchiElePropertyMapper' mapperInterface 2024-07-03 14:42:40.357 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.overall.mapper.ArchiElePropertyMapper' mapperInterface
2024-07-03 14:42:40.358 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'. 2024-07-03 14:42:40.358 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'.
2024-07-03 14:42:40.358 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.mapper.ArchiElementMapper' mapperInterface 2024-07-03 14:42:40.358 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.overall.mapper.ArchiElementMapper' mapperInterface
2024-07-03 14:42:40.358 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'. 2024-07-03 14:42:40.358 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'.
2024-07-03 14:42:40.359 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.mapper.VersionInitMapper' mapperInterface 2024-07-03 14:42:40.359 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.overall.mapper.VersionInitMapper' mapperInterface
2024-07-03 14:42:40.359 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'. 2024-07-03 14:42:40.359 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'.
2024-07-03 14:42:40.463 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174 2024-07-03 14:42:40.463 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174
2024-07-03 14:42:40.616 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging. 2024-07-03 14:42:40.616 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging.
...@@ -15474,7 +15474,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating ...@@ -15474,7 +15474,7 @@ org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating
at org.springframework.boot.SpringApplication.run(SpringApplication.java:302) at org.springframework.boot.SpringApplication.run(SpringApplication.java:302)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1303)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292) at org.springframework.boot.SpringApplication.run(SpringApplication.java:1292)
at org.arch.ArchOverallApp.main(ArchOverallApp.java:11) at org.arch.overall.ArchOverallApp.main(ArchOverallApp.java:11)
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]' Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'archiElementImpl': Injection of resource dependencies failed; nested exception is org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'archiElementMapper' defined in file [E:\gw_space\arch\arch-overall\target\classes\org\arch\mapper\ArchiElementMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception; nested exception is java.io.IOException: Failed to parse mapping resource: 'file [E:\gw_space\arch\arch-overall\target\classes\mapper\ArchiElementMapper.xml]'
at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332) at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:332)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431) at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1431)
...@@ -15790,7 +15790,7 @@ log: ...@@ -15790,7 +15790,7 @@ log:
2024-07-03 14:44:13.690 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP] 2024-07-03 14:44:13.690 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP]
2024-07-03 14:44:13.692 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP] 2024-07-03 14:44:13.692 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP]
2024-07-03 14:44:13.694 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}] 2024-07-03 14:44:13.694 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}]
2024-07-03 14:44:13.731 [main] INFO org.arch.ArchOverallApp:641 - The following profiles are active: dev 2024-07-03 14:44:13.731 [main] INFO org.arch.overall.ArchOverallApp:641 - The following profiles are active: dev
2024-07-03 14:44:14.589 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper 2024-07-03 14:44:14.589 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper
2024-07-03 14:44:14.596 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. 2024-07-03 14:44:14.596 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2024-07-03 14:44:14.597 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch' 2024-07-03 14:44:14.597 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch'
...@@ -15809,11 +15809,11 @@ log: ...@@ -15809,11 +15809,11 @@ log:
2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'. 2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'.
2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface 2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface
2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'. 2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'.
2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.mapper.ArchiElePropertyMapper' mapperInterface 2024-07-03 14:44:15.128 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.overall.mapper.ArchiElePropertyMapper' mapperInterface
2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'. 2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'.
2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.mapper.ArchiElementMapper' mapperInterface 2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.overall.mapper.ArchiElementMapper' mapperInterface
2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'. 2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'.
2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.mapper.VersionInitMapper' mapperInterface 2024-07-03 14:44:15.129 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.overall.mapper.VersionInitMapper' mapperInterface
2024-07-03 14:44:15.130 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'. 2024-07-03 14:44:15.130 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'.
2024-07-03 14:44:15.225 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174 2024-07-03 14:44:15.225 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174
2024-07-03 14:44:15.358 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging. 2024-07-03 14:44:15.358 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging.
...@@ -15929,7 +15929,7 @@ log: ...@@ -15929,7 +15929,7 @@ log:
2024-07-03 14:44:23.247 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 17003 (http) with context path '' 2024-07-03 14:44:23.247 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 17003 (http) with context path ''
2024-07-03 14:44:23.259 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry:75 - nacos registry, DEFAULT_GROUP arch-overall localhost:17003 register finished 2024-07-03 14:44:23.259 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry:75 - nacos registry, DEFAULT_GROUP arch-overall localhost:17003 register finished
2024-07-03 14:44:25.574 [main] INFO org.springframework.cloud.commons.util.InetUtils:170 - Cannot determine local hostname 2024-07-03 14:44:25.574 [main] INFO org.springframework.cloud.commons.util.InetUtils:170 - Cannot determine local hostname
2024-07-03 14:44:25.584 [main] INFO org.arch.ArchOverallApp:61 - Started ArchOverallApp in 18.412 seconds (JVM running for 20.951) 2024-07-03 14:44:25.584 [main] INFO org.arch.overall.ArchOverallApp:61 - Started ArchOverallApp in 18.412 seconds (JVM running for 20.951)
2024-07-03 14:44:25.595 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=arch-overall.properties, group=DEFAULT_GROUP 2024-07-03 14:44:25.595 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=arch-overall.properties, group=DEFAULT_GROUP
2024-07-03 14:44:25.596 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-datasource.yaml, group=DEFAULT_GROUP 2024-07-03 14:44:25.596 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-datasource.yaml, group=DEFAULT_GROUP
2024-07-03 14:44:25.597 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-mybatis.yaml, group=DEFAULT_GROUP 2024-07-03 14:44:25.597 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-mybatis.yaml, group=DEFAULT_GROUP
...@@ -16171,7 +16171,7 @@ log: ...@@ -16171,7 +16171,7 @@ log:
2024-07-03 14:48:24.965 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP] 2024-07-03 14:48:24.965 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP]
2024-07-03 14:48:24.968 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP] 2024-07-03 14:48:24.968 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP]
2024-07-03 14:48:24.969 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}] 2024-07-03 14:48:24.969 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}]
2024-07-03 14:48:25.001 [main] INFO org.arch.ArchOverallApp:641 - The following profiles are active: dev 2024-07-03 14:48:25.001 [main] INFO org.arch.overall.ArchOverallApp:641 - The following profiles are active: dev
2024-07-03 14:48:25.823 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper 2024-07-03 14:48:25.823 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper
2024-07-03 14:48:25.828 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. 2024-07-03 14:48:25.828 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2024-07-03 14:48:25.830 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch' 2024-07-03 14:48:25.830 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch'
...@@ -16190,11 +16190,11 @@ log: ...@@ -16190,11 +16190,11 @@ log:
2024-07-03 14:48:26.282 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'. 2024-07-03 14:48:26.282 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'.
2024-07-03 14:48:26.282 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface 2024-07-03 14:48:26.282 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface
2024-07-03 14:48:26.283 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'. 2024-07-03 14:48:26.283 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'.
2024-07-03 14:48:26.283 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.mapper.ArchiElePropertyMapper' mapperInterface 2024-07-03 14:48:26.283 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.overall.mapper.ArchiElePropertyMapper' mapperInterface
2024-07-03 14:48:26.283 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'. 2024-07-03 14:48:26.283 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'.
2024-07-03 14:48:26.284 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.mapper.ArchiElementMapper' mapperInterface 2024-07-03 14:48:26.284 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.overall.mapper.ArchiElementMapper' mapperInterface
2024-07-03 14:48:26.284 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'. 2024-07-03 14:48:26.284 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'.
2024-07-03 14:48:26.284 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.mapper.VersionInitMapper' mapperInterface 2024-07-03 14:48:26.284 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.overall.mapper.VersionInitMapper' mapperInterface
2024-07-03 14:48:26.285 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'. 2024-07-03 14:48:26.285 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'.
2024-07-03 14:48:26.373 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174 2024-07-03 14:48:26.373 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=15fbe27e-6e10-3cd6-9f4c-e48ae758b174
2024-07-03 14:48:26.489 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging. 2024-07-03 14:48:26.489 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging.
...@@ -16310,7 +16310,7 @@ log: ...@@ -16310,7 +16310,7 @@ log:
2024-07-03 14:48:33.231 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 17003 (http) with context path '' 2024-07-03 14:48:33.231 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 17003 (http) with context path ''
2024-07-03 14:48:33.240 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry:75 - nacos registry, DEFAULT_GROUP arch-overall localhost:17003 register finished 2024-07-03 14:48:33.240 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry:75 - nacos registry, DEFAULT_GROUP arch-overall localhost:17003 register finished
2024-07-03 14:48:35.526 [main] INFO org.springframework.cloud.commons.util.InetUtils:170 - Cannot determine local hostname 2024-07-03 14:48:35.526 [main] INFO org.springframework.cloud.commons.util.InetUtils:170 - Cannot determine local hostname
2024-07-03 14:48:35.537 [main] INFO org.arch.ArchOverallApp:61 - Started ArchOverallApp in 16.676 seconds (JVM running for 19.084) 2024-07-03 14:48:35.537 [main] INFO org.arch.overall.ArchOverallApp:61 - Started ArchOverallApp in 16.676 seconds (JVM running for 19.084)
2024-07-03 14:48:35.549 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=arch-overall.properties, group=DEFAULT_GROUP 2024-07-03 14:48:35.549 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=arch-overall.properties, group=DEFAULT_GROUP
2024-07-03 14:48:35.551 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-datasource.yaml, group=DEFAULT_GROUP 2024-07-03 14:48:35.551 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-datasource.yaml, group=DEFAULT_GROUP
2024-07-03 14:48:35.552 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-mybatis.yaml, group=DEFAULT_GROUP 2024-07-03 14:48:35.552 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-mybatis.yaml, group=DEFAULT_GROUP
...@@ -16559,7 +16559,7 @@ log: ...@@ -16559,7 +16559,7 @@ log:
2024-07-03 14:55:21.743 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP] 2024-07-03 14:55:21.743 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall.properties] & group[DEFAULT_GROUP]
2024-07-03 14:55:21.746 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP] 2024-07-03 14:55:21.746 [main] WARN c.a.cloud.nacos.client.NacosPropertySourceBuilder:87 - Ignore the empty nacos configuration and get it based on dataId[arch-overall-dev.properties] & group[DEFAULT_GROUP]
2024-07-03 14:55:21.747 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}] 2024-07-03 14:55:21.747 [main] INFO o.s.c.b.c.PropertySourceBootstrapConfiguration:109 - Located property source: [BootstrapPropertySource {name='bootstrapProperties-arch-overall-dev.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall.properties,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-arch-overall,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-redis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-mybatis.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-datasource.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-log.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-config.yaml,DEFAULT_GROUP'}, BootstrapPropertySource {name='bootstrapProperties-common-storage.yaml,DEFAULT_GROUP'}]
2024-07-03 14:55:21.774 [main] INFO org.arch.ArchOverallApp:641 - The following profiles are active: dev 2024-07-03 14:55:21.774 [main] INFO org.arch.overall.ArchOverallApp:641 - The following profiles are active: dev
2024-07-03 14:55:22.614 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper 2024-07-03 14:55:22.614 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:184 - Searching for mappers annotated with @Mapper
2024-07-03 14:55:22.619 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter. 2024-07-03 14:55:22.619 [main] DEBUG org.apache.ibatis.logging.LogFactory:109 - Logging initialized using 'class org.apache.ibatis.logging.slf4j.Slf4jImpl' adapter.
2024-07-03 14:55:22.620 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch' 2024-07-03 14:55:22.620 [main] DEBUG o.m.s.boot.autoconfigure.MybatisAutoConfiguration:196 - Using auto-configuration base package 'org.arch'
...@@ -16578,11 +16578,11 @@ log: ...@@ -16578,11 +16578,11 @@ log:
2024-07-03 14:55:23.049 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'. 2024-07-03 14:55:23.049 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'sysEventLogMapper'.
2024-07-03 14:55:23.050 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface 2024-07-03 14:55:23.050 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'coreMapper' and 'org.arch.common.mapper.CoreMapper' mapperInterface
2024-07-03 14:55:23.050 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'. 2024-07-03 14:55:23.050 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'coreMapper'.
2024-07-03 14:55:23.051 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.mapper.ArchiElePropertyMapper' mapperInterface 2024-07-03 14:55:23.051 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElePropertyMapper' and 'org.arch.overall.mapper.ArchiElePropertyMapper' mapperInterface
2024-07-03 14:55:23.051 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'. 2024-07-03 14:55:23.051 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElePropertyMapper'.
2024-07-03 14:55:23.051 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.mapper.ArchiElementMapper' mapperInterface 2024-07-03 14:55:23.051 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'archiElementMapper' and 'org.arch.overall.mapper.ArchiElementMapper' mapperInterface
2024-07-03 14:55:23.052 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'. 2024-07-03 14:55:23.052 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'archiElementMapper'.
2024-07-03 14:55:23.052 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.mapper.VersionInitMapper' mapperInterface 2024-07-03 14:55:23.052 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Creating MapperFactoryBean with name 'versionInitMapper' and 'org.arch.overall.mapper.VersionInitMapper' mapperInterface
2024-07-03 14:55:23.053 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'. 2024-07-03 14:55:23.053 [main] DEBUG org.mybatis.spring.mapper.ClassPathMapperScanner:49 - Enabling autowire by type for MapperFactoryBean with name 'versionInitMapper'.
2024-07-03 14:55:23.139 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=81327cfc-e1f6-3533-a053-921a9ee15780 2024-07-03 14:55:23.139 [main] INFO o.springframework.cloud.context.scope.GenericScope:283 - BeanFactory id=81327cfc-e1f6-3533-a053-921a9ee15780
2024-07-03 14:55:23.253 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging. 2024-07-03 14:55:23.253 [main] DEBUG org.apache.cxf.common.logging.LogUtils:137 - Using org.apache.cxf.common.logging.Slf4jLogger for logging.
...@@ -16698,7 +16698,7 @@ log: ...@@ -16698,7 +16698,7 @@ log:
2024-07-03 14:55:32.566 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 17003 (http) with context path '' 2024-07-03 14:55:32.566 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:220 - Tomcat started on port(s): 17003 (http) with context path ''
2024-07-03 14:55:32.576 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry:75 - nacos registry, DEFAULT_GROUP arch-overall localhost:17003 register finished 2024-07-03 14:55:32.576 [main] INFO c.a.cloud.nacos.registry.NacosServiceRegistry:75 - nacos registry, DEFAULT_GROUP arch-overall localhost:17003 register finished
2024-07-03 14:55:34.969 [main] INFO org.springframework.cloud.commons.util.InetUtils:170 - Cannot determine local hostname 2024-07-03 14:55:34.969 [main] INFO org.springframework.cloud.commons.util.InetUtils:170 - Cannot determine local hostname
2024-07-03 14:55:34.980 [main] INFO org.arch.ArchOverallApp:61 - Started ArchOverallApp in 19.777 seconds (JVM running for 22.221) 2024-07-03 14:55:34.980 [main] INFO org.arch.overall.ArchOverallApp:61 - Started ArchOverallApp in 19.777 seconds (JVM running for 22.221)
2024-07-03 14:55:34.990 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=arch-overall.properties, group=DEFAULT_GROUP 2024-07-03 14:55:34.990 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=arch-overall.properties, group=DEFAULT_GROUP
2024-07-03 14:55:34.991 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-datasource.yaml, group=DEFAULT_GROUP 2024-07-03 14:55:34.991 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-datasource.yaml, group=DEFAULT_GROUP
2024-07-03 14:55:34.992 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-mybatis.yaml, group=DEFAULT_GROUP 2024-07-03 14:55:34.992 [main] INFO c.a.cloud.nacos.refresh.NacosContextRefresher:105 - listening config: dataId=common-mybatis.yaml, group=DEFAULT_GROUP
...@@ -16711,14 +16711,14 @@ log: ...@@ -16711,14 +16711,14 @@ log:
2024-07-03 14:55:59.054 [http-nio-17003-exec-1] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet' 2024-07-03 14:55:59.054 [http-nio-17003-exec-1] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring DispatcherServlet 'dispatcherServlet'
2024-07-03 14:55:59.056 [http-nio-17003-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet' 2024-07-03 14:55:59.056 [http-nio-17003-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:525 - Initializing Servlet 'dispatcherServlet'
2024-07-03 14:55:59.058 [http-nio-17003-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 2 ms 2024-07-03 14:55:59.058 [http-nio-17003-exec-1] INFO org.springframework.web.servlet.DispatcherServlet:547 - Completed initialization in 2 ms
2024-07-03 14:56:16.851 [http-nio-17003-exec-3] WARN o.s.w.s.m.support.DefaultHandlerExceptionResolver:208 - Resolved [org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public org.arch.Result org.arch.controller.ArchiElementController.gtArchiElement(org.arch.modules.archoverall.dto.ArchiElementDTO)] 2024-07-03 14:56:16.851 [http-nio-17003-exec-3] WARN o.s.w.s.m.support.DefaultHandlerExceptionResolver:208 - Resolved [org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public org.arch.Result org.arch.overall.controller.ArchiElementController.gtArchiElement(org.arch.modules.archoverall.dto.ArchiElementDTO)]
2024-07-03 14:56:18.080 [http-nio-17003-exec-4] WARN o.s.w.s.m.support.DefaultHandlerExceptionResolver:208 - Resolved [org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public org.arch.Result org.arch.controller.ArchiElementController.gtArchiElement(org.arch.modules.archoverall.dto.ArchiElementDTO)] 2024-07-03 14:56:18.080 [http-nio-17003-exec-4] WARN o.s.w.s.m.support.DefaultHandlerExceptionResolver:208 - Resolved [org.springframework.http.converter.HttpMessageNotReadableException: Required request body is missing: public org.arch.Result org.arch.overall.controller.ArchiElementController.gtArchiElement(org.arch.modules.archoverall.dto.ArchiElementDTO)]
2024-07-03 14:56:51.779 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession 2024-07-03 14:56:51.779 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession
2024-07-03 14:56:51.789 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@26f5946f] was not registered for synchronization because synchronization is not active 2024-07-03 14:56:51.789 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@26f5946f] was not registered for synchronization because synchronization is not active
2024-07-03 14:56:51.867 [http-nio-17003-exec-5] DEBUG o.m.spring.transaction.SpringManagedTransaction:49 - JDBC Connection [ConnectionProxyImpl{connectedTime=2024-07-03 14:55:24.653, closeCount=0, lastValidateTimeMillis=2024-07-03 14:56:51.866}] will not be managed by Spring 2024-07-03 14:56:51.867 [http-nio-17003-exec-5] DEBUG o.m.spring.transaction.SpringManagedTransaction:49 - JDBC Connection [ConnectionProxyImpl{connectedTime=2024-07-03 14:55:24.653, closeCount=0, lastValidateTimeMillis=2024-07-03 14:56:51.866}] will not be managed by Spring
2024-07-03 14:56:51.876 [http-nio-17003-exec-5] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Preparing: select se.*, gm.graph_name as iconName, gm.icon from archi_element se left join graph_meta_info gm on se.graph_id = gm.graph_id WHERE se.del_flag = '0' order by se.create_time desc 2024-07-03 14:56:51.876 [http-nio-17003-exec-5] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Preparing: select se.*, gm.graph_name as iconName, gm.icon from archi_element se left join graph_meta_info gm on se.graph_id = gm.graph_id WHERE se.del_flag = '0' order by se.create_time desc
2024-07-03 14:56:51.916 [http-nio-17003-exec-5] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Parameters: 2024-07-03 14:56:51.916 [http-nio-17003-exec-5] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Parameters:
2024-07-03 14:56:52.054 [http-nio-17003-exec-5] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - <== Total: 118 2024-07-03 14:56:52.054 [http-nio-17003-exec-5] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - <== Total: 118
2024-07-03 14:56:52.056 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@26f5946f] 2024-07-03 14:56:52.056 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@26f5946f]
2024-07-03 14:56:52.081 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession 2024-07-03 14:56:52.081 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession
2024-07-03 14:56:52.082 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@17d880c4] was not registered for synchronization because synchronization is not active 2024-07-03 14:56:52.082 [http-nio-17003-exec-5] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@17d880c4] was not registered for synchronization because synchronization is not active
...@@ -16730,9 +16730,9 @@ log: ...@@ -16730,9 +16730,9 @@ log:
2024-07-03 14:57:10.681 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession 2024-07-03 14:57:10.681 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession
2024-07-03 14:57:10.681 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@b9ebd70] was not registered for synchronization because synchronization is not active 2024-07-03 14:57:10.681 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@b9ebd70] was not registered for synchronization because synchronization is not active
2024-07-03 14:57:10.683 [http-nio-17003-exec-6] DEBUG o.m.spring.transaction.SpringManagedTransaction:49 - JDBC Connection [ConnectionProxyImpl{connectedTime=2024-07-03 14:55:24.653, closeCount=0, lastValidateTimeMillis=2024-07-03 14:56:51.866}] will not be managed by Spring 2024-07-03 14:57:10.683 [http-nio-17003-exec-6] DEBUG o.m.spring.transaction.SpringManagedTransaction:49 - JDBC Connection [ConnectionProxyImpl{connectedTime=2024-07-03 14:55:24.653, closeCount=0, lastValidateTimeMillis=2024-07-03 14:56:51.866}] will not be managed by Spring
2024-07-03 14:57:10.683 [http-nio-17003-exec-6] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Preparing: select se.*, gm.graph_name as iconName, gm.icon from archi_element se left join graph_meta_info gm on se.graph_id = gm.graph_id WHERE se.del_flag = '0' order by se.create_time desc 2024-07-03 14:57:10.683 [http-nio-17003-exec-6] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Preparing: select se.*, gm.graph_name as iconName, gm.icon from archi_element se left join graph_meta_info gm on se.graph_id = gm.graph_id WHERE se.del_flag = '0' order by se.create_time desc
2024-07-03 14:57:10.683 [http-nio-17003-exec-6] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Parameters: 2024-07-03 14:57:10.683 [http-nio-17003-exec-6] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Parameters:
2024-07-03 14:57:10.699 [http-nio-17003-exec-6] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - <== Total: 118 2024-07-03 14:57:10.699 [http-nio-17003-exec-6] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - <== Total: 118
2024-07-03 14:57:10.699 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@b9ebd70] 2024-07-03 14:57:10.699 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@b9ebd70]
2024-07-03 14:57:10.701 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession 2024-07-03 14:57:10.701 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession
2024-07-03 14:57:10.702 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@166d600] was not registered for synchronization because synchronization is not active 2024-07-03 14:57:10.702 [http-nio-17003-exec-6] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@166d600] was not registered for synchronization because synchronization is not active
...@@ -16744,9 +16744,9 @@ log: ...@@ -16744,9 +16744,9 @@ log:
2024-07-03 14:57:12.226 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession 2024-07-03 14:57:12.226 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession
2024-07-03 14:57:12.227 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@730a2c7] was not registered for synchronization because synchronization is not active 2024-07-03 14:57:12.227 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@730a2c7] was not registered for synchronization because synchronization is not active
2024-07-03 14:57:12.227 [http-nio-17003-exec-7] DEBUG o.m.spring.transaction.SpringManagedTransaction:49 - JDBC Connection [ConnectionProxyImpl{connectedTime=2024-07-03 14:55:24.653, closeCount=0, lastValidateTimeMillis=2024-07-03 14:56:51.866}] will not be managed by Spring 2024-07-03 14:57:12.227 [http-nio-17003-exec-7] DEBUG o.m.spring.transaction.SpringManagedTransaction:49 - JDBC Connection [ConnectionProxyImpl{connectedTime=2024-07-03 14:55:24.653, closeCount=0, lastValidateTimeMillis=2024-07-03 14:56:51.866}] will not be managed by Spring
2024-07-03 14:57:12.227 [http-nio-17003-exec-7] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Preparing: select se.*, gm.graph_name as iconName, gm.icon from archi_element se left join graph_meta_info gm on se.graph_id = gm.graph_id WHERE se.del_flag = '0' order by se.create_time desc 2024-07-03 14:57:12.227 [http-nio-17003-exec-7] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Preparing: select se.*, gm.graph_name as iconName, gm.icon from archi_element se left join graph_meta_info gm on se.graph_id = gm.graph_id WHERE se.del_flag = '0' order by se.create_time desc
2024-07-03 14:57:12.228 [http-nio-17003-exec-7] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Parameters: 2024-07-03 14:57:12.228 [http-nio-17003-exec-7] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - ==> Parameters:
2024-07-03 14:57:12.240 [http-nio-17003-exec-7] DEBUG org.arch.mapper.ArchiElementMapper.gtArchiElement:135 - <== Total: 118 2024-07-03 14:57:12.240 [http-nio-17003-exec-7] DEBUG org.arch.overall.mapper.ArchiElementMapper.gtArchiElement:135 - <== Total: 118
2024-07-03 14:57:12.241 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@730a2c7] 2024-07-03 14:57:12.241 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@730a2c7]
2024-07-03 14:57:12.242 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession 2024-07-03 14:57:12.242 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - Creating a new SqlSession
2024-07-03 14:57:12.242 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@dc8c9b7] was not registered for synchronization because synchronization is not active 2024-07-03 14:57:12.242 [http-nio-17003-exec-7] DEBUG org.mybatis.spring.SqlSessionUtils:49 - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@dc8c9b7] was not registered for synchronization because synchronization is not active
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!