Commit e4259710 authored by 赵啸非's avatar 赵啸非

添加mybatis xml映射文件

parent 3a11becb
...@@ -19,7 +19,7 @@ fi ...@@ -19,7 +19,7 @@ fi
echo "stoping application $PROJECT_NAME......" echo "stoping application $PROJECT_NAME......"
kill ${pid} kill -9 ${pid}
echo "Send shutdown request to Server $PROJECT_NAME OK" echo "Send shutdown request to Server $PROJECT_NAME OK"
......
...@@ -28,7 +28,7 @@ public class SyncTreeSiteThread implements Runnable { ...@@ -28,7 +28,7 @@ public class SyncTreeSiteThread implements Runnable {
public void run() { public void run() {
log.info("刷新用户站点树=》userID:{}",context.getUser().getId()); log.info("刷新用户站点树=》userID:{}",context.getUser().getId());
List<SiteTreeSelect> siteTreeSelects = siteService.siteTree(context); List<SiteTreeSelect> siteTreeSelects = siteService.siteTree(context);
log.info("刷新用户站点树=》length:{}",siteTreeSelects.size()); log.info("刷新用户站点树=》json:{}",JSON.toJSONString(siteTreeSelects));
siteService.setSiteTree(siteTreeSelects, context); siteService.setSiteTree(siteTreeSelects, context);
log.info("刷新用户站点树=》siteTree:{}", JSON.toJSONString(siteService.getSiteTree(context))); log.info("刷新用户站点树=》siteTree:{}", JSON.toJSONString(siteService.getSiteTree(context)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment