企业团队接口
parent
1635c75ea8
commit
4faa110082
|
@ -47,13 +47,6 @@ public class SysApitypeController extends BaseController
|
||||||
/**
|
/**
|
||||||
* 企业信息接口
|
* 企业信息接口
|
||||||
*/
|
*/
|
||||||
@RequiresPermissions("market:apitype:firm")
|
|
||||||
@GetMapping("/firm")
|
|
||||||
public Result<TableDataInfo<SysFirm>> apifirminfo(SysFirm sysFirm){
|
|
||||||
startPage();
|
|
||||||
List<SysFirm> apifirmlist= sysApitypeService.selectSysApiFirm(sysFirm);
|
|
||||||
return getDataTable(apifirmlist);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -32,7 +32,7 @@ public interface SysApitypeMapper extends BaseMapper<SysApitype> {
|
||||||
public List<SysApitype> selectSysApitypeList(SysApitype sysApitype);
|
public List<SysApitype> selectSysApitypeList(SysApitype sysApitype);
|
||||||
|
|
||||||
|
|
||||||
public List<SysFirm> selectSysApiFirm(SysFirm SysFirm);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增接口
|
* 新增接口
|
||||||
|
|
|
@ -29,13 +29,6 @@ public interface ISysApitypeService extends IService<SysApitype> {
|
||||||
*/
|
*/
|
||||||
public List<SysApitype> selectSysApitypeList(SysApitype sysApitype);
|
public List<SysApitype> selectSysApitypeList(SysApitype sysApitype);
|
||||||
|
|
||||||
/**
|
|
||||||
* 查询企业信息
|
|
||||||
* @param sysFirm
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
public List<SysFirm> selectSysApiFirm(SysFirm sysFirm);
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增接口
|
* 新增接口
|
||||||
|
|
|
@ -45,11 +45,6 @@ public class SysApitypeServiceImpl extends ServiceImpl<SysApitypeMapper, SysApit
|
||||||
return sysApitypeMapper.selectSysApitypeList(sysApitype);
|
return sysApitypeMapper.selectSysApitypeList(sysApitype);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<SysFirm> selectSysApiFirm(SysFirm sysFirm) {
|
|
||||||
return sysApitypeMapper.selectSysApiFirm(sysFirm);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增接口
|
* 新增接口
|
||||||
|
|
|
@ -13,24 +13,8 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
<result property="sysLeixingpick" column="sys_leixingpick" />
|
<result property="sysLeixingpick" column="sys_leixingpick" />
|
||||||
<result property="sysNumber" column="sys_number" />
|
<result property="sysNumber" column="sys_number" />
|
||||||
</resultMap>
|
</resultMap>
|
||||||
<resultMap type="com.muyu.market.domain.SysFirm" id="SysFirminfoResult">
|
|
||||||
<result property="firmId" column="firm_id" />
|
|
||||||
<result property="firmAvatr" column="firm_avatr" />
|
|
||||||
<result property="createdName" column="created_name" />
|
|
||||||
<result property="phone" column="phone" />
|
|
||||||
<result property="firmTem" column="firm_tem" />
|
|
||||||
<result property="names" column="names" />
|
|
||||||
<result property="position" column="position" />
|
|
||||||
<result property="firmRegion" column="firm_region" />
|
|
||||||
<result property="firmFrom" column="firm_from" />
|
|
||||||
<result property="socialReputation" column="social_reputation" />
|
|
||||||
<result property="businessLicense" column="business_license" />
|
|
||||||
<result property="firmTime" column="firm_time" />
|
|
||||||
<result property="firmScore" column="firm_score" />
|
|
||||||
</resultMap>
|
|
||||||
<sql id="selectSysFirminfoVo">
|
|
||||||
select firm_id, firm_avatr, created_name, phone, firm_tem, names, position, firm_region, firm_from, social_reputation, business_license, firm_time, firm_score from sys_firminfo
|
|
||||||
</sql>
|
|
||||||
<sql id="selectSysApitypeVo">
|
<sql id="selectSysApitypeVo">
|
||||||
select sys_id, sys_serial, sys_intro, sys_types, sys_beihzu, sys_leixingpick, sys_number from sys_apitype
|
select sys_id, sys_serial, sys_intro, sys_types, sys_beihzu, sys_leixingpick, sys_number from sys_apitype
|
||||||
</sql>
|
</sql>
|
||||||
|
@ -53,27 +37,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<select id="selectSysApiFirm" parameterType="com.muyu.market.domain.SysFirm" resultMap="SysFirminfoResult">
|
|
||||||
<include refid="selectSysFirminfoVo"/>
|
|
||||||
<where>
|
|
||||||
<if test="firmAvatr != null and firmAvatr != ''"> and firm_avatr = #{firmAvatr}</if>
|
|
||||||
<if test="createdName != null and createdName != ''"> and created_name like concat('%', #{createdName}, '%')</if>
|
|
||||||
<if test="phone != null and phone != ''"> and phone = #{phone}</if>
|
|
||||||
<if test="firmTem != null and firmTem != ''"> and firm_tem = #{firmTem}</if>
|
|
||||||
<if test="names != null and names != ''"> and names = #{names}</if>
|
|
||||||
<if test="position != null and position != ''"> and position = #{position}</if>
|
|
||||||
<if test="firmRegion != null and firmRegion != ''"> and firm_region = #{firmRegion}</if>
|
|
||||||
<if test="firmFrom != null and firmFrom != ''"> and firm_from = #{firmFrom}</if>
|
|
||||||
<if test="socialReputation != null and socialReputation != ''"> and social_reputation = #{socialReputation}</if>
|
|
||||||
<if test="businessLicense != null and businessLicense != ''"> and business_license = #{businessLicense}</if>
|
|
||||||
<if test="firmTime != null "> and firm_time = #{firmTime}</if>
|
|
||||||
<if test="firmScore != null "> and firm_score = #{firmScore}</if>
|
|
||||||
</where>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<insert id="insertSysApitype" parameterType="com.muyu.market.domain.SysApitype" useGeneratedKeys="true" keyProperty="sysId">
|
<insert id="insertSysApitype" parameterType="com.muyu.market.domain.SysApitype" useGeneratedKeys="true" keyProperty="sysId">
|
||||||
insert into sys_apitype
|
insert into sys_apitype
|
||||||
<trim prefix="(" suffix=")" suffixOverrides=",">
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,32 @@
|
||||||
|
21:29:30.368 [com.alibaba.nacos.client.Worker.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:30 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:30 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:30 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:35.398 [com.alibaba.nacos.client.Worker.2] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:35 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:35 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:35 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:40.457 [com.alibaba.nacos.client.Worker.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:40 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:40 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:40 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:43.517 [main] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:43 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:43 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:43 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:43.541 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:43 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:43 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:43 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:45.488 [com.alibaba.nacos.client.Worker.3] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:45 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:45 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:45 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:48.566 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:48 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:48 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:48 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:50.511 [com.alibaba.nacos.client.Worker.2] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:50 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:50 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:50 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:53.649 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:53 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:53 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:53 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:55.534 [com.alibaba.nacos.client.Worker.4] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:55 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:55 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:55 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:29:58.691 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:29:59 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:29:59 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:29:59 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:00.557 [com.alibaba.nacos.client.Worker.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:00 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:00 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:00 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:03.850 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:04 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:04 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:04 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:05.576 [com.alibaba.nacos.client.Worker.5] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:05 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:05 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:05 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:08.894 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:09 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:09 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:09 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:10.609 [com.alibaba.nacos.client.Worker.3] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:10 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:10 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:10 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:13.921 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:14 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:14 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:14 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:15.638 [com.alibaba.nacos.client.Worker.6] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:16 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:15 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:15 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:18.956 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:19 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:19 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:19 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:20.670 [com.alibaba.nacos.client.Worker.2] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:21 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:20 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:20 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:23.989 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:24 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:24 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:24 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:25.797 [com.alibaba.nacos.client.Worker.7] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:26 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:25 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:25 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:29.016 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:29 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:29 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:29 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:30.824 [com.alibaba.nacos.client.Worker.4] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:31 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:30 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:30 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:34.192 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:34 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:34 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:34 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:35.853 [com.alibaba.nacos.client.Worker.8] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:36 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:35 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:35 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:39.220 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:39 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:39 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:39 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:40.887 [com.alibaba.nacos.client.Worker.8] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:41 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:40 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:40 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:44.248 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:44 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:44 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:44 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:45.914 [com.alibaba.nacos.client.Worker.8] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:46 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:45 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:45 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:49.276 [com.alibaba.nacos.client.naming.security.0] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:49 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:49 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:49 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
||||||
|
21:30:50.944 [com.alibaba.nacos.client.Worker.8] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,85] - login failed: {"code":404,"message":"<html><body><h1>Whitelabel Error Page</h1><p>This application has no explicit mapping for /error, so you are seeing this as a fallback.</p><div id='created'>Tue Aug 27 21:30:51 CST 2024</div><div>There was an unexpected error (type=Not Found, status=404).</div><div>No message available</div></body></html>","header":{"header":{"Accept-Charset":"UTF-8","Connection":"keep-alive","Content-Language":"en-US","Content-Length":"306","Content-Security-Policy":"script-src 'self'","Content-Type":"text/html;charset=UTF-8","Date":"Tue, 27 Aug 2024 13:30:50 GMT","Keep-Alive":"timeout=60","Vary":"Access-Control-Request-Headers"},"originalResponseHeader":{"Connection":["keep-alive"],"Content-Language":["en-US"],"Content-Length":["306"],"Content-Security-Policy":["script-src 'self'"],"Content-Type":["text/html;charset=UTF-8"],"Date":["Tue, 27 Aug 2024 13:30:50 GMT"],"Keep-Alive":["timeout=60"],"Vary":["Access-Control-Request-Headers","Access-Control-Request-Method","Origin"]},"charset":"UTF-8"}}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,128 @@
|
||||||
|
10:30:42.571 [main] INFO c.m.MarketApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
10:30:45.396 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10023"]
|
||||||
|
10:30:45.398 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
10:30:45.398 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
10:30:45.488 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
10:30:47.284 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
10:30:47.285 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
10:30:47.286 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
10:30:48.605 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
|
||||||
|
10:30:48.861 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
10:30:54.879 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@78b9d614[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
|
||||||
|
10:30:54.880 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@63f95ac1[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
|
||||||
|
10:30:55.036 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10023"]
|
||||||
|
10:30:55.170 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
|
||||||
|
10:30:56.177 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
10:30:56.178 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
10:30:56.178 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
10:30:56.182 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
10:30:56.186 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
10:30:56.186 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
10:30:56.206 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c7255fb1-1abe-418e-a0bc-c64f13d1695f
|
||||||
|
10:30:56.208 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->c7255fb1-1abe-418e-a0bc-c64f13d1695f
|
||||||
|
10:30:56.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
10:30:56.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
10:30:56.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
10:30:56.210 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] Try to connect to server on start up, server: {serverIp = '10.0.1.97', server main port = 8848}
|
||||||
|
10:30:56.210 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:10.0.1.97 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||||
|
10:30:56.285 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] Success to connect to server [10.0.1.97:8848] on start up, connectionId = 1724553056469_10.0.1.6_62857
|
||||||
|
10:30:56.285 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
10:30:56.285 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] Notify connected event to listeners.
|
||||||
|
10:30:56.285 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c7255fb1-1abe-418e-a0bc-c64f13d1695f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$649/0x00000249d24b6698
|
||||||
|
10:30:56.285 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
10:30:56.286 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-apimaster with instance Instance{instanceId='null', ip='192.168.1.108', port=10023, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||||
|
10:30:56.309 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-apimaster 192.168.1.108:10023 register finished
|
||||||
|
10:30:57.447 [main] INFO c.m.MarketApplication - [logStarted,56] - Started MarketApplication in 20.103 seconds (process running for 20.921)
|
||||||
|
10:30:57.457 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
10:30:57.458 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
10:30:57.458 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster.yml+DEFAULT_GROUP+cloud-2112
|
||||||
|
10:30:57.467 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
10:30:57.467 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster.yml, group=DEFAULT_GROUP
|
||||||
|
10:30:57.468 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster-dev.yml+DEFAULT_GROUP+cloud-2112
|
||||||
|
10:30:57.468 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
10:30:57.469 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster-dev.yml, group=DEFAULT_GROUP
|
||||||
|
10:30:57.469 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster+DEFAULT_GROUP+cloud-2112
|
||||||
|
10:30:57.469 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster, group=DEFAULT_GROUP, cnt=1
|
||||||
|
10:30:57.469 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster, group=DEFAULT_GROUP
|
||||||
|
11:33:17.022 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||||
|
11:33:17.022 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-apimaster with instance: Instance{instanceId='null', ip='192.168.1.108', port=10023, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||||
|
11:33:17.037 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||||
|
11:33:17.039 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||||
|
11:33:17.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||||
|
11:33:17.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c7255fb1-1abe-418e-a0bc-c64f13d1695f
|
||||||
|
11:33:17.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@172ae5a7[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1243]
|
||||||
|
11:33:17.040 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||||
|
11:33:17.040 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@f4985c0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||||
|
11:33:17.040 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724553056469_10.0.1.6_62857
|
||||||
|
11:33:17.043 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@40cde294[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 721]
|
||||||
|
11:33:17.043 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c7255fb1-1abe-418e-a0bc-c64f13d1695f
|
||||||
|
11:33:17.043 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||||
|
11:33:17.044 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||||
|
11:33:17.044 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||||
|
11:33:17.046 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
|
||||||
|
11:33:17.059 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-apimaster', registryValue='http://192.168.33.217:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
|
||||||
|
11:33:17.060 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
|
||||||
|
11:33:17.060 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
|
||||||
|
11:33:17.060 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
|
||||||
|
11:33:17.060 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
|
||||||
|
11:33:17.061 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
|
||||||
|
11:33:17.068 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||||
|
11:33:17.070 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||||
|
11:33:17.076 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||||
|
11:33:17.076 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||||
|
11:33:17.076 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
||||||
|
11:33:26.747 [main] INFO c.m.MarketApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
11:33:29.336 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10023"]
|
||||||
|
11:33:29.338 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
11:33:29.339 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
11:33:29.417 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
11:33:31.706 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
11:33:31.707 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
11:33:31.707 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
11:33:32.955 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
|
||||||
|
11:33:33.216 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
11:33:39.174 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5ab780ce[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
|
||||||
|
11:33:39.174 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@17d90f81[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
|
||||||
|
11:33:39.330 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10023"]
|
||||||
|
11:33:39.495 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
|
||||||
|
11:33:40.499 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
11:33:40.499 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
11:33:40.500 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
11:33:40.505 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
11:33:40.509 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
11:33:40.510 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
11:33:40.535 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 89eb018d-6058-44fd-9da4-9d8627e6e97f
|
||||||
|
11:33:40.536 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->89eb018d-6058-44fd-9da4-9d8627e6e97f
|
||||||
|
11:33:40.537 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
11:33:40.537 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
11:33:40.537 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
11:33:40.538 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] Try to connect to server on start up, server: {serverIp = '10.0.1.97', server main port = 8848}
|
||||||
|
11:33:40.539 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:10.0.1.97 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||||
|
11:33:40.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] Success to connect to server [10.0.1.97:8848] on start up, connectionId = 1724556820862_10.0.1.6_63950
|
||||||
|
11:33:40.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
11:33:40.715 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] Notify connected event to listeners.
|
||||||
|
11:33:40.716 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [89eb018d-6058-44fd-9da4-9d8627e6e97f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$649/0x0000019e814b4730
|
||||||
|
11:33:40.716 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
11:33:40.717 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-apimaster with instance Instance{instanceId='null', ip='192.168.1.108', port=10023, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||||
|
11:33:40.813 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-apimaster 192.168.1.108:10023 register finished
|
||||||
|
11:33:41.956 [main] INFO c.m.MarketApplication - [logStarted,56] - Started MarketApplication in 19.614 seconds (process running for 20.398)
|
||||||
|
11:33:41.965 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
11:33:41.965 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
11:33:41.965 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster.yml+DEFAULT_GROUP+cloud-2112
|
||||||
|
11:33:41.973 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
11:33:41.973 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster.yml, group=DEFAULT_GROUP
|
||||||
|
11:33:41.974 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster-dev.yml+DEFAULT_GROUP+cloud-2112
|
||||||
|
11:33:41.974 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
11:33:41.974 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster-dev.yml, group=DEFAULT_GROUP
|
||||||
|
11:33:41.975 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster+DEFAULT_GROUP+cloud-2112
|
||||||
|
11:33:41.975 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster, group=DEFAULT_GROUP, cnt=1
|
||||||
|
11:33:41.976 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster, group=DEFAULT_GROUP
|
|
@ -0,0 +1,83 @@
|
||||||
|
21:29:27.384 [main] INFO c.m.MarketApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev"
|
||||||
|
21:29:30.019 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-10023"]
|
||||||
|
21:29:30.021 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat]
|
||||||
|
21:29:30.021 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24]
|
||||||
|
21:29:30.115 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext
|
||||||
|
21:29:34.807 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited
|
||||||
|
21:29:34.809 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success
|
||||||
|
21:29:34.809 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master]
|
||||||
|
21:29:36.019 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success.
|
||||||
|
21:29:36.252 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**].
|
||||||
|
21:29:42.179 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@136cd71b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam]
|
||||||
|
21:29:42.180 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@631f188a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam]
|
||||||
|
21:29:42.331 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-10023"]
|
||||||
|
21:29:42.468 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999
|
||||||
|
21:29:43.482 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null
|
||||||
|
21:29:43.483 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null
|
||||||
|
21:29:43.484 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null
|
||||||
|
21:29:43.490 [main] INFO c.a.n.client.naming - [<init>,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource
|
||||||
|
21:29:43.493 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success.
|
||||||
|
21:29:43.493 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success.
|
||||||
|
21:29:43.520 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1cfc91e7-675d-445c-8da4-5a5cb40d9717
|
||||||
|
21:29:43.522 [main] INFO c.a.n.client.naming - [<init>,109] - Create naming rpc client for uuid->1cfc91e7-675d-445c-8da4-5a5cb40d9717
|
||||||
|
21:29:43.522 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager
|
||||||
|
21:29:43.522 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService
|
||||||
|
21:29:43.522 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler
|
||||||
|
21:29:43.523 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Try to connect to server on start up, server: {serverIp = '10.0.1.97', server main port = 8848}
|
||||||
|
21:29:43.523 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:10.0.1.97 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false}
|
||||||
|
21:29:43.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Success to connect to server [10.0.1.97:8848] on start up, connectionId = 1724765383940_10.0.1.6_64201
|
||||||
|
21:29:43.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler
|
||||||
|
21:29:43.650 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Notify connected event to listeners.
|
||||||
|
21:29:43.650 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$649/0x00000168594b6ad0
|
||||||
|
21:29:43.651 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect
|
||||||
|
21:29:43.652 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] cloud-2112 registering service cloud-apimaster with instance Instance{instanceId='null', ip='192.168.1.107', port=10023, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}}
|
||||||
|
21:29:43.674 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-apimaster 192.168.1.107:10023 register finished
|
||||||
|
21:29:44.813 [main] INFO c.m.MarketApplication - [logStarted,56] - Started MarketApplication in 21.979 seconds (process running for 22.828)
|
||||||
|
21:29:44.821 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis
|
||||||
|
21:29:44.821 [main] INFO c.a.n.c.c.i.CacheData - [<clinit>,99] - nacos.cache.data.init.snapshot = true
|
||||||
|
21:29:44.821 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster.yml+DEFAULT_GROUP+cloud-2112
|
||||||
|
21:29:44.829 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
21:29:44.829 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster.yml, group=DEFAULT_GROUP
|
||||||
|
21:29:44.830 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster-dev.yml+DEFAULT_GROUP+cloud-2112
|
||||||
|
21:29:44.832 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster-dev.yml, group=DEFAULT_GROUP, cnt=1
|
||||||
|
21:29:44.832 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster-dev.yml, group=DEFAULT_GROUP
|
||||||
|
21:29:44.832 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-cloud-2112-10.0.1.97_8848] [subscribe] cloud-apimaster+DEFAULT_GROUP+cloud-2112
|
||||||
|
21:29:44.833 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-cloud-2112-10.0.1.97_8848] [add-listener] ok, tenant=cloud-2112, dataId=cloud-apimaster, group=DEFAULT_GROUP, cnt=1
|
||||||
|
21:29:44.833 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-apimaster, group=DEFAULT_GROUP
|
||||||
|
21:30:51.929 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now...
|
||||||
|
21:30:51.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] cloud-2112 deregistering service cloud-apimaster with instance: Instance{instanceId='null', ip='192.168.1.107', port=10023, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}}
|
||||||
|
21:30:52.037 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished.
|
||||||
|
21:30:52.038 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin
|
||||||
|
21:30:52.038 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin
|
||||||
|
21:30:52.038 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->1cfc91e7-675d-445c-8da4-5a5cb40d9717
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1d5a28dd[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 22]
|
||||||
|
21:30:52.040 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown
|
||||||
|
21:30:52.041 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@79fe8fc8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0]
|
||||||
|
21:30:52.041 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1724765383940_10.0.1.6_64201
|
||||||
|
21:30:52.044 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@76a13465[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 25]
|
||||||
|
21:30:52.044 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->1cfc91e7-675d-445c-8da4-5a5cb40d9717
|
||||||
|
21:30:52.045 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1cfc91e7-675d-445c-8da4-5a5cb40d9717] Server healthy check fail, currentConnection = 1724765383940_10.0.1.6_64201
|
||||||
|
21:30:52.045 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped
|
||||||
|
21:30:52.045 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed
|
||||||
|
21:30:52.045 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop
|
||||||
|
21:30:52.048 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop.
|
||||||
|
21:30:52.068 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-apimaster', registryValue='http://192.168.33.217:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null]
|
||||||
|
21:30:52.068 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy.
|
||||||
|
21:30:52.068 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success.
|
||||||
|
21:30:52.069 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy.
|
||||||
|
21:30:52.069 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy.
|
||||||
|
21:30:52.069 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy.
|
||||||
|
21:30:52.075 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing ....
|
||||||
|
21:30:52.077 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ...
|
||||||
|
21:30:52.083 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed
|
||||||
|
21:30:52.083 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success,
|
||||||
|
21:30:52.083 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye
|
Loading…
Reference in New Issue