From d986639b52149fb3002803d6236b2561abc9977f Mon Sep 17 00:00:00 2001 From: Veal98 <1912420914@qq.com> Date: Thu, 28 Jan 2021 22:09:02 +0800 Subject: [PATCH] Complete follow and notice function --- README.md | 88 +- docs/130-添加评论.md | 2 +- docs/180-点赞.md | 2 + docs/190-我收到的赞.md | 2 +- docs/200-关注.md | 297 + docs/210-关注列表和粉丝列表.md | 192 + docs/220-优化登录模块.md | 226 + docs/230-发送系统通知.md | 317 + docs/240-显示系统通知.md | 212 + .../error/log-error-2021-01-25.0.log | 630 ++ .../error/log-error-2021-01-27.0.log | 147 + log/community/info/log-info-2021-01-25.0.log | 4264 ++++++++ log/community/info/log-info-2021-01-27.0.log | 3352 ++++++ log/community/log_error.log | 3112 ++++-- log/community/log_info.log | 9411 +++++++++-------- log/community/log_warn.log | 791 +- log/community/warn/log-warn-2021-01-25.0.log | 550 + log/community/warn/log-warn-2021-01-27.0.log | 323 + .../community/aspect/ServiceLogAspect.java | 3 + .../greate/community/config/WebMvcConfig.java | 7 + .../controller/CommentController.java | 34 +- .../controller/DiscussPostController.java | 3 + .../controller/FollowController.java | 165 + .../community/controller/HomeController.java | 2 +- .../community/controller/LikeController.java | 25 +- .../community/controller/LoginController.java | 37 +- .../controller/MessageController.java | 143 +- .../community/controller/UserController.java | 21 +- .../interceptor/MessageInterceptor.java | 41 + .../greate/community/dao/CommentMapper.java | 9 + .../community/dao/LoginTicketMapper.java | 1 + .../greate/community/dao/MessageMapper.java | 36 + .../com/greate/community/entity/Event.java | 71 + .../greate/community/event/EventConsumer.java | 65 + .../greate/community/event/EventProducer.java | 28 + .../community/service/CommentService.java | 13 + .../community/service/DiscussPostSerivce.java | 3 + .../community/service/FollowService.java | 172 + .../community/service/MessageService.java | 45 + .../greate/community/service/UserService.java | 73 +- .../community/util/CommunityConstant.java | 19 +- .../greate/community/util/RedisKeyUtil.java | 81 +- src/main/resources/application.properties | 7 + src/main/resources/mapper/comment-mapper.xml | 6 + src/main/resources/mapper/message-mapper.xml | 47 + src/main/resources/static/css/global.css | 4 +- src/main/resources/static/css/letter.css | 4 +- src/main/resources/static/js/discuss.js | 4 +- src/main/resources/static/js/profile.js | 30 +- src/main/resources/templates/index.html | 2 +- .../templates/site/discuss-detail.html | 10 +- .../resources/templates/site/followee.html | 162 +- .../resources/templates/site/follower.html | 164 +- src/main/resources/templates/site/letter.html | 6 +- .../templates/site/notice-detail.html | 181 +- src/main/resources/templates/site/notice.html | 130 +- .../resources/templates/site/profile.html | 23 +- .../java/com/greate/community/KafkaTests.java | 49 + 58 files changed, 19847 insertions(+), 5997 deletions(-) create mode 100644 docs/200-关注.md create mode 100644 docs/210-关注列表和粉丝列表.md create mode 100644 docs/220-优化登录模块.md create mode 100644 docs/230-发送系统通知.md create mode 100644 docs/240-显示系统通知.md create mode 100644 log/community/error/log-error-2021-01-25.0.log create mode 100644 log/community/error/log-error-2021-01-27.0.log create mode 100644 log/community/info/log-info-2021-01-25.0.log create mode 100644 log/community/info/log-info-2021-01-27.0.log create mode 100644 log/community/warn/log-warn-2021-01-25.0.log create mode 100644 log/community/warn/log-warn-2021-01-27.0.log create mode 100644 src/main/java/com/greate/community/controller/FollowController.java create mode 100644 src/main/java/com/greate/community/controller/interceptor/MessageInterceptor.java create mode 100644 src/main/java/com/greate/community/entity/Event.java create mode 100644 src/main/java/com/greate/community/event/EventConsumer.java create mode 100644 src/main/java/com/greate/community/event/EventProducer.java create mode 100644 src/main/java/com/greate/community/service/FollowService.java create mode 100644 src/test/java/com/greate/community/KafkaTests.java diff --git a/README.md b/README.md index 81e1159e..f7e3b586 100644 --- a/README.md +++ b/README.md @@ -41,54 +41,96 @@ ## 🔔 功能列表 -- [x] 注册 - - 用户注册 - - 发送激活邮件 - - 激活用户 -- [x] 登录 | 登出 - - 用户登录(生成验证码) - - 用户登出 -- [x] 账号设置 +- [x] 注册(MySQL) + - 用户注册成功,将用户信息存入 MySQL,但此时该用户状态为未激活 + - 向用户发送激活邮件,用户点击链接则激活账号 + +- [x] 登录 | 登出(MySQL、Redis) + - 进入登录界面,动态生成验证码,并将验证码短暂存入 Redis(60 秒) + + - 用户登录成功(验证用户名、密码、验证码),生成登录凭证且设置状态为有效,并将登录凭证存入 Redis + + 注意:登录凭证存在有效期,在所有的请求执行之前,都会检查凭证是否有效和是否过期,只要该用户的凭证有效并在有效期时间内,本次请求就会一直持有该用户信息(使用 ThreadLocal 持有用户信息) + + - 勾选记住我,则延长登录凭证有效时间 + + - 用户登录成功,将用户信息短暂存入 Redis(1 小时) + + - 用户登出,将凭证状态设为无效,并更新 Redis 中该用户的登录凭证信息 + +- [x] 账号设置(MySQL) - 修改头像 - 修改密码 -- [x] 检查登录状态(禁止未登录用户访问需要登录权限的界面) -- [x] 帖子模块 + +- [x] 检查登录状态(禁止未登录用户访问需要登录权限的界面,后续会使用 Spring Security 接管) + +- [x] 帖子模块(MySQL) - 发布帖子(过滤敏感词) - 分页显示帖子 - 查看帖子详情 -- [x] 评论模块(过滤敏感词) + +- [x] 评论模块(MySQL) - 发布对帖子的评论(过滤敏感词) - 分页显示评论 - 发布对评论的回复(过滤敏感词) -- [x] 私信模块 + +- [x] 私信模块(MySQL) - 发送私信(过滤敏感词) - - 发送列表(分页显示发出的私信) - - 私信列表(分页显示收到的私信) + - 私信列表 + - 查询当前用户的会话列表 + - 每个会话只显示一条最新的私信 + - 支持分页显示 - 私信详情 + - 查询某个会话所包含的所有私信 + - 访问私信详情时,将显示的私信设为已读状态 + - 支持分页显示 + - [x] 统一处理异常(404、500) - 普通请求异常 - 异步请求异常 + - [x] 统一记录日志 -- [x] 点赞模块 + +- [x] 点赞模块(Redis) - 点赞 - 获赞 -- [ ] 关注模块 - - 关注 - - 取消关注 - - 关注列表 - - 粉丝列表 -- [ ] 系统通知模块 - - 管理员发送系统通知 - - 用户接收系统通知 + +- [x] 关注模块(Redis) + + - 关注功能 + - 取消关注功能 + - 统计用户的关注数和粉丝数 + - 关注列表(查询某个用户关注的人),支持分页 + - 粉丝列表(查询某个用户的粉丝),支持分页 + +- [x] 系统通知模块(Kafka) + + - 通知列表 + - 显示评论、点赞、关注三种类型的通知 + - 通知详情 + - 分页显示某一类主题所包含的通知 + - 进入某种类型的系统通知详情,则将该页的所有未读的系统通知状态设置为已读 + - 未读数量 + - 分别显示每种类型的系统通知的未读数量 + - 显示所有系统通知的未读数量 + + - 导航栏显示所有消息的未读数量(未读私信 + 未读系统通知) + - [ ] 搜索模块 + - [ ] 权限控制 + - [ ] 管理员模块 - 置顶帖子 - 加精帖子 - 删除帖子 + - [ ] 网站数据统计 + - [ ] 热帖排行 + - [ ] 文件上传 + - [ ] 优化网站性能 ## 🎨 界面展示 diff --git a/docs/130-添加评论.md b/docs/130-添加评论.md index 5b9259f4..2390d902 100644 --- a/docs/130-添加评论.md +++ b/docs/130-添加评论.md @@ -105,7 +105,7 @@ public int addComment(Comment comment) { ## Controller -前端 的 name = "content" 和 `public String addComment(Comment comment) {` Comment 中的字段要对应 +**前端的 name = "xxx" 和 `public String addComment(Comment comment) {` Comment 实体类中的字段要一一对应**,这样即可直接从前端传值。 ```java @Controller diff --git a/docs/180-点赞.md b/docs/180-点赞.md index 767aef01..63305ac6 100644 --- a/docs/180-点赞.md +++ b/docs/180-点赞.md @@ -10,6 +10,8 @@ - 详情页统计帖子和评论/回复的点赞数量 - 详情页显示用户的点赞状态(赞过了则显示已赞) +> Redis 一般不用 DAO 层,不像 MySQL + ## Redis 配置 导包、配置端口等 diff --git a/docs/190-我收到的赞.md b/docs/190-我收到的赞.md index 13d59ada..f23fc6bd 100644 --- a/docs/190-我收到的赞.md +++ b/docs/190-我收到的赞.md @@ -35,7 +35,7 @@ public class RedisKeyUtil { // 某个用户的赞(被赞) // like:user:userId -> int public static String getUserLikeKey(int userId) { - return PREFIX_ENTITY_LIKE + SPLIT + userId; + return PREFIX_USER_LIKE + SPLIT + userId; } } diff --git a/docs/200-关注.md b/docs/200-关注.md new file mode 100644 index 00000000..481c1ba6 --- /dev/null +++ b/docs/200-关注.md @@ -0,0 +1,297 @@ +# 关注 + +--- + +需求: + +- 开发关注、取消关注功能 +- 统计用户的关注数、粉丝数 + +关键: + +- 若 A 关注了 B,则 A 是 B 的粉丝 Follower,B 是 A 的目标 Followee +- 关注的目标可以是用户、帖子、题目等,在实现时将这些目标抽象为实体 + + + +## 工具类:生成 Redis 的 Key + +```java +/** + * 生成 Redis 的 key + */ +public class RedisKeyUtil { + + private static final String SPLIT = ":"; + + private static final String PREFIX_FOLLOWER = "follower"; // 被关注(粉丝) + private static final String PREFIX_FOLLOWEE = "followee"; // 关注的目标 + + /** + * 某个用户关注的实体 + * followee:userId:entityType -> zset(entityId, now) 以当前关注的时间进行排序 + * @param userId 粉丝的 id + * @param entityType 关注的实体类型 + * @return + */ + public static String getFolloweeKey(int userId, int entityType) { + return PREFIX_FOLLOWEE + SPLIT + userId + SPLIT + entityType; + } + + /** + * 某个实体拥有的粉丝 + * follower:entityType:entityId -> zset(userId, now) + * @param entityType + * @param entityId + * @return + */ + public static String getFollowerKey(int entityType, int entityId) { + return PREFIX_FOLLOWER + SPLIT + entityType + SPLIT + entityId; + } + +} +``` + +## Service + +```java +/** + * 关注相关 + */ +@Service +public class FollowService { + + @Autowired + private RedisTemplate redisTemplate; + + /** + * 关注 + * @param userId + * @param entityType + * @param entityId + */ + public void follow(int userId, int entityType, int entityId) { + redisTemplate.execute(new SessionCallback() { + @Override + public Object execute(RedisOperations redisOperations) throws DataAccessException { + // 生成 Redis 的 key + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + String followerKey = RedisKeyUtil.getFollowerKey(entityType, entityId); + + // 开启事务管理 + redisOperations.multi(); + + // 插入数据 + redisOperations.opsForZSet().add(followeeKey, entityId, System.currentTimeMillis()); + redisOperations.opsForZSet().add(followerKey, userId, System.currentTimeMillis()); + + // 提交事务 + return redisOperations.exec(); + } + }); + } + + /** + * 取消关注 + * @param userId + * @param entityType + * @param entityId + */ + public void unfollow(int userId, int entityType, int entityId) { + redisTemplate.execute(new SessionCallback() { + @Override + public Object execute(RedisOperations redisOperations) throws DataAccessException { + // 生成 Redis 的 key + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + String followerKey = RedisKeyUtil.getFollowerKey(entityType, entityId); + + // 开启事务管理 + redisOperations.multi(); + + // 删除数据 + redisOperations.opsForZSet().remove(followeeKey, entityId); + redisOperations.opsForZSet().remove(followerKey, userId); + + // 提交事务 + return redisOperations.exec(); + } + }); + } + + /** + * 查询某个用户关注的实体的数量 + * @param userId 用户 id + * @param entityType 实体类型 + * @return + */ + public long findFolloweeCount(int userId, int entityType) { + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + return redisTemplate.opsForZSet().zCard(followeeKey); + } + + /** + * 查询某个实体的粉丝数量 + * @param entityType + * @param entityId + * @return + */ + public long findFollowerCount(int entityType, int entityId) { + String followerKey = RedisKeyUtil.getFollowerKey(entityType, entityId); + return redisTemplate.opsForZSet().zCard(followerKey); + } + + /** + * 判断当前用户是否已关注该实体 + * @param userId + * @param entityType + * @param entityId + * @return + */ + public boolean hasFollowed(int userId, int entityType, int entityId) { + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + return redisTemplate.opsForZSet().score(followeeKey, entityId) != null ; + } + +} +``` + +## Controller + +```java +/** + * 关注 + */ +@Controller +public class FollowController { + + @Autowired + private FollowService followService; + + @Autowired + private HostHolder hostHolder; + + /** + * 关注 + * @param entityType + * @param entityId + * @return + */ + @PostMapping("/follow") + @ResponseBody + public String follow(int entityType, int entityId) { + User user = hostHolder.getUser(); + + followService.follow(user.getId(), entityType, entityId); + + return CommunityUtil.getJSONString(0, "已关注"); + } + + /** + * 取消关注 + * @param entityType + * @param entityId + * @return + */ + @PostMapping("/unfollow") + @ResponseBody + public String unfollow(int entityType, int entityId) { + User user = hostHolder.getUser(); + + followService.unfollow(user.getId(), entityType, entityId); + + return CommunityUtil.getJSONString(0, "已取消关注"); + } + +} +``` + +在 `UserController` 中添加进入个人主页查询关注/粉丝数量的逻辑: + +```java +// 关注数量 +long followeeCount = followService.findFolloweeCount(userId, ENTITY_TYPE_USER); +model.addAttribute("followeeCount", followeeCount); +// 粉丝数量 +long followerCount = followService.findFollowerCount(ENTITY_TYPE_USER, userId); +model.addAttribute("followerCount", followerCount); +// 当前登录用户是否已关注该用户 +boolean hasFollowed = false; +if (hostHolder.getUser() != null) { + hasFollowed = followService.hasFollowed(hostHolder.getUser().getId(), ENTITY_TYPE_USER, userId); +} +model.addAttribute("hasFollowed", hasFollowed); +``` + +## 前端 + +```html +
+
+ + + +
+ +
+ 关注了 + 关注者 +
+
+``` + +对应的 `profile.js` + +```js +$(function(){ + $(".follow-btn").click(follow); +}); + +function follow() { + var btn = this; + if($(btn).hasClass("btn-info")) { + // 关注TA + $.post( + CONTEXT_PATH + "/follow", + {"entityType":3, "entityId":$(btn).prev().val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 偷个懒,直接刷新界面 + window.location.reload(); + } + else { + alert(data.msg); + } + } + ) + } else { + // 取消关注 + $.post( + CONTEXT_PATH + "/unfollow", + {"entityType":3, "entityId":$(btn).prev().val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 偷个懒,直接刷新界面 + window.location.reload(); + } + else { + alert(data.msg); + } + } + ) + } +} +``` + +注意: + +``` +$.post( + CONTEXT_PATH + "/follow", + {"entityType":3, "entityId":$(btn).prev().val()}, +``` + +中的 `"entityType"` 和 `“entityId”` 名称对应后端 `/follow` 方法的参数,其值需要从前端获取 \ No newline at end of file diff --git a/docs/210-关注列表和粉丝列表.md b/docs/210-关注列表和粉丝列表.md new file mode 100644 index 00000000..bbddc899 --- /dev/null +++ b/docs/210-关注列表和粉丝列表.md @@ -0,0 +1,192 @@ +# 关注列表、粉丝列表 + +--- + +业务层: + +- 查询某个用户关注的人,支持分页 +- 查询某个用户的粉丝,支持分页 + +表现层: + +- 处理 “查询关注的人”、“查询粉丝” 的请求 +- 编写 “查询关注的人”、“查询粉丝” 模板 + +## Service + +```java +/** + * 分页查询某个用户关注的人(偷个懒,此处没有做对其他实体的关注) + * @param userId + * @param offset + * @param limit + * @return + */ +public List> findFollowees(int userId, int offset, int limit) { + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, ENTITY_TYPE_USER); + Set targetIds = redisTemplate.opsForZSet().reverseRange(followeeKey, offset, offset + limit - 1); + if (targetIds == null) { + return null; + } + List> list = new ArrayList<>(); + for (Integer targetId : targetIds) { + Map map = new HashMap<>(); + + User user = userService.findUserById(targetId); + map.put("user", user); + Double score = redisTemplate.opsForZSet().score(followeeKey, targetId); + map.put("followTime", new Date(score.longValue())); + + list.add(map); + } + + return list; +} + +/** + * 分页查询某个用户的粉丝(偷个懒,此处没有做对其他实体的粉丝) + * @param userId + * @param offset + * @param limit + * @return + */ +public List> findFollowers(int userId, int offset, int limit) { + String followerKey = RedisKeyUtil.getFollowerKey(ENTITY_TYPE_USER, userId); + Set targetIds = redisTemplate.opsForZSet().reverseRange(followerKey, offset, offset + limit - 1); + if (targetIds == null) { + return null; + } + List> list = new ArrayList<>(); + for (Integer targetId : targetIds) { + Map map = new HashMap<>(); + + User user = userService.findUserById(targetId); + map.put("user", user); + Double score = redisTemplate.opsForZSet().score(followerKey, targetId); + map.put("followTime", new Date(score.longValue())); + + list.add(map); + } + + return list; + +} +``` + +## Controller + +```java +/** + * 某个用户的关注列表(人) + * @param userId + * @param page + * @param model + * @return + */ +@GetMapping("/followees/{userId}") +public String getFollowees(@PathVariable("userId") int userId, Page page, Model model) { + User user = userService.findUserById(userId); + if (user == null) { + throw new RuntimeException("该用户不存在"); + } + model.addAttribute("user", user); + + page.setLimit(5); + page.setPath("/followees/" + userId); + page.setRows((int) followService.findFolloweeCount(userId, ENTITY_TYPE_USER)); + + // 获取关注列表 + List> userList = followService.findFollowees(userId, page.getOffset(), page.getLimit()); + + if (userList != null) { + for (Map map : userList) { + User u = (User) map.get("user"); // 被关注的用户 + map.put("hasFollowed", hasFollowed(u.getId())); // 判断当前登录用户是否已关注这个关注列表中的某个用户 + } + } + + model.addAttribute("users", userList); + + return "/site/followee"; +} + +/** + * 某个用户的粉丝列表 + * @param userId + * @param page + * @param model + * @return + */ +@GetMapping("/followers/{userId}") +public String getFollowers(@PathVariable("userId") int userId, Page page, Model model) { + User user = userService.findUserById(userId); + if (user == null) { + throw new RuntimeException("该用户不存在"); + } + model.addAttribute("user", user); + + page.setLimit(5); + page.setPath("/followers/" + userId); + page.setRows((int) followService.findFollowerCount(ENTITY_TYPE_USER, userId)); + + // 获取关注列表 + List> userList = followService.findFollowers(userId, page.getOffset(), page.getLimit()); + + if (userList != null) { + for (Map map : userList) { + User u = (User) map.get("user"); // 被关注的用户 + map.put("hasFollowed", hasFollowed(u.getId())); // 判断当前登录用户是否已关注这个关注列表中的某个用户 + } + } + + model.addAttribute("users", userList); + + return "/site/follower"; +} + +/** + * 判断当前登录用户是否已关注某个用户 + * @param userId 某个用户 + * @return + */ +private boolean hasFollowed(int userId) { + if (hostHolder.getUser() == null) { + return false; + } + + return followService.hasFollowed(hostHolder.getUser().getId(), ENTITY_TYPE_USER, userId); +} +``` + +## 前端 + +```html + + 关注了 人 + + + 关注者 人 + +``` + +对应的关注界面 `followee.html` 和粉丝界面 `follower.html`,以 `followee.html` 为例: + +```html +
  • + + 用户头像 + + + + + 关注于 + + + + + +
  • +``` + diff --git a/docs/220-优化登录模块.md b/docs/220-优化登录模块.md new file mode 100644 index 00000000..3534e9c3 --- /dev/null +++ b/docs/220-优化登录模块.md @@ -0,0 +1,226 @@ +# 优化登录模块 + +--- + +## 使用 Redis 存储验证码 + +- 验证码需要频繁刷新,对性能要求较高 +- 验证码不需永久保存(设置在 Cookie 和 Redis 中的保留时间为 60 s) +- 分布式部署,存在 Session 共享问题 + +> 原来我们是将验证码存在 session 中,这里我们将其存入 redis 中 +> +> 存入 redis 中的数据 key(kaptcha:随机字符串) value(验证码) +> +> 用户在输入验证码的时候,还没有进行登录,我们无法通过用户的 id 指明这个验证码是针对谁的。所以这里我们随机生成一个字符串,将其短暂的存入 cookie,使用这个字符串来标识这个用户 + +工具类:生成 Redis 的 Key + +```java +/** + * 生成 Redis 的 key + */ +public class RedisKeyUtil { + + private static final String SPLIT = ":"; + + private static final String PREFIX_KAPTCHA = "kaptcha"; // 验证码 + + /** + * 登录验证码(指定这个验证码是针对哪个用户的) + * @param owner 用户进入登录页面的时候,由于此时用户还未登录,无法通过 id 标识用户 + * 随机生成一个字符串,短暂的存入 cookie,使用这个字符串来标识这个用户 + * @return + */ + public static String getKaptchaKey(String owner) { + return PREFIX_KAPTCHA + SPLIT + owner; + } + +} +``` + +修改生成验证码的方法: + +```java +/** + * 生成验证码 + * @param response + * @param session + */ +@GetMapping("/kaptcha") +public void getKaptcha(HttpServletResponse response, HttpSession session) { + // 生成验证码 + String text = kaptchaProducer.createText(); // 生成随机字符 + System.out.println("验证码:" + text); + BufferedImage image = kaptchaProducer.createImage(text); // 生成图片 + + // 将验证码存入 session + // session.setAttribute("kaptcha", text); + + // 验证码的归属者 + String kaptchaOwner = CommunityUtil.generateUUID(); + Cookie cookie = new Cookie("kaptchaOwner", kaptchaOwner); + cookie.setMaxAge(60); + cookie.setPath(contextPath); + response.addCookie(cookie); + // 将验证码存入 redis + String redisKey = RedisKeyUtil.getKaptchaKey(kaptchaOwner); + redisTemplate.opsForValue().set(redisKey, text, 60, TimeUnit.SECONDS); + + // 将图片输出给浏览器 + response.setContentType("image/png"); + try { + ServletOutputStream os = response.getOutputStream(); + ImageIO.write(image, "png", os); + } catch (IOException e) { + logger.error("响应验证码失败", e.getMessage()); + } +} +``` + +## 使用 Redis 存储登录凭证 + +- 处理每次请求时,都要查询用户的登录凭证,访问的频率非常高(登录凭证这个数据不需要删除,永久保存在 redis 中) + +工具类:生成 Redis 的 Key + +```java +/** + * 生成 Redis 的 key + */ +public class RedisKeyUtil { + + private static final String SPLIT = ":"; + + private static final String PREFIX_TICKET = "ticket"; // 登录凭证 + + + /** + * 登陆凭证 + * @param ticket + * @return + */ + public static String getTicketKey(String ticket) { + return PREFIX_TICKET + SPLIT + ticket; + } + +} +``` + +LoginTicket 这张表以及相关操作可以废弃了,不过我们最好不要直接就删除了。在 `LoginMapper` 类上面加上 `@Deprecated` 注解表示不推荐使用就好了。 + +修改 UserService 中生成/修改/查询登录凭证这三个方法 + +```java +// 生成登录凭证 +String redisKey = RedisKeyUtil.getTicketKey(loginTicket.getTicket()); +redisTemplate.opsForValue().set(redisKey, loginTicket); + +/** + * 用户退出(将凭证状态设为无效) + * @param ticket + */ +public void logout(String ticket) { + // loginTicketMapper.updateStatus(ticket, 1); + // 修改(先删除再插入)对应用户在 redis 中的凭证 + String redisKey = RedisKeyUtil.getTicketKey(ticket); + LoginTicket loginTicket = (LoginTicket) redisTemplate.opsForValue().get(redisKey); + loginTicket.setStatus(1); + redisTemplate.opsForValue().set(redisKey, loginTicket); +} + +/** + * 根据 ticket 查询 LoginTicket 信息 + * @param ticket + * @return + */ +public LoginTicket findLoginTicket(String ticket) { + // return loginTicketMapper.selectByTicket(ticket); + String redisKey = RedisKeyUtil.getTicketKey(ticket); + return (LoginTicket) redisTemplate.opsForValue().get(redisKey); +} +``` + +## 使用 Redis 缓存用户信息 + +- 处理每次请求时,都要根据凭证查询用户信息,访问的频率非常高(用户信息只在 Redis 中保存一段时间) + +在 UserService 中添加以下三个方法: + +- 优先从缓存中取值; +- 缓存中没有该用户信息时,则将其存入缓存; +- 用户信息变更时清除对应缓存数据; + +```java +/** + * 优先从缓存中取值 + * @param userId + * @return + */ +private User getCache(int userId) { + String redisKey = RedisKeyUtil.getUserKey(userId); + return (User) redisTemplate.opsForValue().get(redisKey); +} + +/** + * 缓存中没有该用户信息时,则将其存入缓存 + * @param userId + * @return + */ +private User initCache(int userId) { + User user = userMapper.selectById(userId); + String redisKey = RedisKeyUtil.getUserKey(userId); + redisTemplate.opsForValue().set(redisKey, user, 3600, TimeUnit.SECONDS); + return user; +} + +/** + * 用户信息变更时清除对应缓存数据 + * @param userId + */ +private void clearCache(int userId) { + String redisKey = RedisKeyUtil.getUserKey(userId); + redisTemplate.delete(redisKey); +} +``` + +在修改 UserService 中其他方法的逻辑,将上面三个方法加入 + +```java +/** + * 根据 Id 查询用户 + * @param id + * @return + */ +public User findUserById (int id) { + // return userMapper.selectById(id); + User user = getCache(id); // 优先从缓存中查询数据 + if (user == null) { + user = initCache(id); + } + return user; +} + +/** + * 激活用户 + * @param userId 用户 id + * @param code 激活码 + * @return + */ +public int activation(int userId, String code) { + User user = userMapper.selectById(userId); + if (user.getStatus() == 1) { + // 用户已激活 + return ACTIVATION_REPEAT; + } + else if (user.getActivationCode().equals(code)) { + // 修改用户状态为已激活 + userMapper.updateStatus(userId, 1); + clearCache(userId); // 用户信息变更,清除缓存中的旧数据 + return ACTIVATION_SUCCESS; + } + else { + return ACTIVATION_FAILURE; + } +} +``` \ No newline at end of file diff --git a/docs/230-发送系统通知.md b/docs/230-发送系统通知.md new file mode 100644 index 00000000..06c2ab9e --- /dev/null +++ b/docs/230-发送系统通知.md @@ -0,0 +1,317 @@ +# 发送系统通知 + +--- + +点赞、关注、私信等系统都会发送通知,在流量巨大的社交网站中,这个系统通知的需求是非常庞大的,为保证系统性能,使用消息队列 Kafka 构建 TB 级异步消息系统。 + +> 掌握 Java 原生 API 阻塞队列 +> +> ![](https://gitee.com/veal98/images/raw/master/img/20210127204618.png) + +下载安装 Kafka(Kafka 自带 Zookeeper,对其配置文件进行相应修改) + + + + + +1)首先:启动 kafka: + +第一步: + +![](https://gitee.com/veal98/images/raw/master/img/20210127212202.png) + +第二步:开启另一个命令行 + +![](https://gitee.com/veal98/images/raw/master/img/20210127212417.png) + +2)然后,开启另一个命令行,创建主题 + +![](https://gitee.com/veal98/images/raw/master/img/20210127212922.png) + +3)生产者生产消息 + +![](https://gitee.com/veal98/images/raw/master/img/20210127213405.png) + +4)开启另一个命令行,消费者读取消息 + +![](https://gitee.com/veal98/images/raw/master/img/20210127213456.png) + +## Spring 整合 Kafka + +### 引入依赖 + +### 配置 Kafka + +- 配置 server、consumer + +## 访问 Kafka + +- 生产者 + + ```java + KafkaTemplate.send(topic, data) + ``` + +- 消费者 + + ```java + @KafkaListener(topics = {"test"}) + public void handleMessage(ConsumerRecord record){ } + ``` + + +## 发送系统通知的需求 + +![](https://gitee.com/veal98/images/raw/master/img/20210128142133.png) + +系统通知也使用私信那张表 `message`,不过 `from_id` 固定为 1,表示是系统发送出来的,注意在 user 表中存储这个系统用户 + +### 封装事件对象 + +```java +/** + * 封装事件(用于系统通知) + */ +public class Event { + + private String topic; // 事件类型 + private int userId; // 事件由谁触发 + private int entityType; // 实体类型 + private int entityId; // 实体 id + private int entityUserId; // 实体的作者 + private Map data = new HashMap<>(); // 存储未来可能需要用到的数据 + + public String getTopic() { + return topic; + } + + public Event setTopic(String topic) { + this.topic = topic; + return this; + } + + public int getUserId() { + return userId; + } + + public Event setUserId(int userId) { + this.userId = userId; + return this; + } + + public int getEntityType() { + return entityType; + } + + public Event setEntityType(int entityType) { + this.entityType = entityType; + return this; + } + + public int getEntityId() { + return entityId; + } + + public Event setEntityId(int entityId) { + this.entityId = entityId; + return this; + } + + public int getEntityUserId() { + return entityUserId; + } + + public Event setEntityUserId(int entityUserId) { + this.entityUserId = entityUserId; + return this; + } + + public Map getData() { + return data; + } + + public Event setData(String key, Object value) { + this.data.put(key, value); + return this; + } +} +``` + +小窍门,将 set 方法设置实体类型的返回值,就可以链式调用 + +解释一下上面的 `userId` 和 `entityUserId` :比如张三给李四点赞了,那么 `userId` 就是张三的 id,系统通知是发送给李四的,即 `entityUserId` 就是李四的 id. + +### 事件的生产者 + +```java +/** + * 事件的生产者 + */ +@Component +public class EventProducer { + + @Autowired + private KafkaTemplate kafkaTemplate; + + /** + * 处理事件 + * @param event + */ + public void fireEvent(Event event) { + // 将事件发布到指定的主题 + kafkaTemplate.send(event.getTopic(), JSONObject.toJSONString(event)); + } + +} +``` + +### 事件的消费者 + +```java +/** + * 事件消费者 + */ +@Component +public class EventConsumer implements CommunityConstant { + + private static final Logger logger = LoggerFactory.getLogger(EventConsumer.class); + + @Autowired + private MessageService messageService; + + @KafkaListener(topics = {TOPIC_COMMNET, TOPIC_LIKE, TOPIC_FOLLOW}) + public void handleMessage(ConsumerRecord record) { + if (record == null || record.value() == null) { + logger.error("消息的内容为空"); + return ; + } + Event event = JSONObject.parseObject(record.value().toString(), Event.class); + if (event == null) { + logger.error("消息格式错误"); + return ; + } + + // 发送系统通知 + Message message = new Message(); + message.setFromId(SYSTEM_USER_ID); + message.setToId(event.getEntityUserId()); + message.setConversationId(event.getTopic()); + message.setCreateTime(new Date()); + + Map content = new HashMap<>(); + content.put("userId", event.getUserId()); + content.put("entityType", event.getEntityType()); + content.put("entityId", event.getEntityId()); + if (!event.getData().isEmpty()) { + for (Map.Entry entry : event.getData().entrySet()) { + content.put(entry.getKey(), entry.getValue()); + } + } + message.setContent(JSONObject.toJSONString(content)); + + messageService.addMessage(message); + + } + +} +``` + +存储在 content 中的内容是 JSON 格式的,方便我们后续的读取。 + +### 修改表现层逻辑 + +- 点击评论主题的系统通知(某个用户评论了你的帖子/评论/回复),进入该条评论所属的帖子详情页 +- 点击点赞主题的系统通过(某个用户点赞了你的帖子/评论/回复),进入该条点赞所属的帖子详情页 +- 点击关注主题的系统通知(某个用户关注了你),进入该用户的个人主页 + +在表现层添加触发事件(发送系统通知)的逻辑,以 `CommnetController` 为例: + +```java +/** + * 添加评论 + * @param discussPostId + * @param comment + * @return + */ +@PostMapping("/add/{discussPostId}") +public String addComment(@PathVariable("discussPostId") int discussPostId, Comment comment) { + comment.setUserId(hostHolder.getUser().getId()); + comment.setStatus(0); + comment.setCreateTime(new Date()); + commentService.addComment(comment); + + // 触发评论事件(系统通知) + Event event = new Event() + .setTopic(TOPIC_COMMNET) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(comment.getEntityType()) + .setEntityId(comment.getEntityId()) + .setData("postId", discussPostId); + if (comment.getEntityType() == ENTITY_TYPE_POST) { + DiscussPost target = discussPostSerivce.findDiscussPostById(comment.getEntityId()); + event.setEntityUserId(target.getUserId()); + } + else if (comment.getEntityType() == ENTITY_TYPE_COMMENT) { + Comment target = commentService.findCommentById(comment.getEntityId()); + event.setEntityUserId(target.getUserId()); + } + + eventProducer.fireEvent(event); + + return "redirect:/discuss/detail/" + discussPostId; +} +``` + +点击评论的系统通知后,进入该条评论所属的帖子 + +注意,对 `LikeController` 我们进行了微小的重构: + +```java +/** + * 点赞 + * @param entityType + * @param entityId + * @param entityUserId 赞的帖子/评论的作者 id + * @param postId 帖子的 id (点赞了哪个帖子,点赞的评论属于哪个帖子,点赞的回复属于哪个帖子) + * @return + */ +@PostMapping("/like") +@ResponseBody +public String like(int entityType, int entityId, int entityUserId, int postId) { + User user = hostHolder.getUser(); + // 点赞 + likeService.like(user.getId(), entityType, entityId, entityUserId); + // 点赞数量 + long likeCount = likeService.findEntityLikeCount(entityType, entityId); + // 点赞状态 + int likeStatus = likeService.findEntityLikeStatus(user.getId(), entityType, entityId); + + Map map = new HashMap<>(); + map.put("likeCount", likeCount); + map.put("likeStatus", likeStatus); + + // 触发点赞事件(系统通知) - 取消点赞不通知 + if (likeStatus == 1) { + Event event = new Event() + .setTopic(TOPIC_LIKE) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(entityType) + .setEntityId(entityId) + .setEntityUserId(entityUserId) + .setData("postId", postId); + eventProducer.fireEvent(event); + } + + return CommunityUtil.getJSONString(0, null, map); +} +``` + +方法参数中添加了 帖子的 id,主要是为了:无论是对帖子的点赞,还是对某个帖子评论/回复的点赞,点击该条系统通知后都需要进入对应的帖子。所以此处我们需要传入帖子的 id,并非和 entityId 重复 + +## 注意 + +注意,修改一下 `ServiceLogAspect` 中的逻辑(统一日志记录),加入一个 `ServletRequestAttributes` 非空的判断: + +![](https://gitee.com/veal98/images/raw/master/img/20210128154901.png) + +这个方法拦截了所有的 Service,而在本节之前我们所有对 Service 的访问都是通过 Controller 的,但是!现在我们多出了一个消费者,它调用了 `MessageService`,不是通过 Controller 去调用的,也就是说在消费者的调用中,是不存在 request 的,也即 `ServletRequestAttributes` 为空。 \ No newline at end of file diff --git a/docs/240-显示系统通知.md b/docs/240-显示系统通知.md new file mode 100644 index 00000000..8d1a415a --- /dev/null +++ b/docs/240-显示系统通知.md @@ -0,0 +1,212 @@ +# 显示系统通知 + +--- + +![](https://gitee.com/veal98/images/raw/master/img/20210128170230.png) + +## DAO + +```xml +int selectNoticUnReadCount(int userId, String topic); + + + +``` + +动态查询,如果 `selectNoticUnReadCount` 不传入 topic 参数,则查询所有系统通知的未读数量。 + +## Service + +```java +/** + * 查询某个主题下最新的系统通知 + * @param userId + * @param topic + * @return + */ +public Message findLatestNotice(int userId, String topic) { + return messageMapper.selectLatestNotice(userId, topic); +} + +/** + * 查询某个主题下包含的系统通知数量 + * @param userId + * @param topic + * @return + */ +public int findNoticeCount(int userId, String topic) { + return messageMapper.selectNoticeCount(userId, topic); +} + +/** + * 查询未读的系统通知数量 + * @param userId + * @param topic + * @return + */ +public int findNoticeUnReadCount(int userId, String topic) { + return messageMapper.selectNoticeUnReadCount(userId, topic); +} + +/** + * 查询某个主题所包含的通知列表 + * @param userId + * @param topic + * @param offset + * @param limit + * @return + */ +public List findNotices(int userId, String topic, int offset, int limit) { + return messageMapper.selectNotices(userId, topic, offset, limit); +} +``` + +## Controller + +```java +/** + * 通知列表(只显示最新一条消息) + * @param model + * @return + */ +@GetMapping("/notice/list") +public String getNoticeList(Model model) { + User user = hostHolder.getUser(); + + // 查询评论类通知 + Message message = messageService.findLatestNotice(user.getId(), TOPIC_COMMNET); + // 封装通知需要用到的数据 + Map messageVO = new HashMap<>(); + if (message != null) { + messageVO.put("message", message); + + String content = HtmlUtils.htmlUnescape(message.getContent()); + Map data = JSONObject.parseObject(content, HashMap.class); + + messageVO.put("user", userService.findUserById((Integer) data.get("userId"))); + messageVO.put("entityType", data.get("entityType")); + messageVO.put("entityId", data.get("entityId")); + messageVO.put("postId", data.get("postId")); + + int count = messageService.findNoticeCount(user.getId(), TOPIC_COMMNET); + messageVO.put("count", count); + + int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_COMMNET); + messageVO.put("unread", unread); + } + model.addAttribute("commentNotice", messageVO); + + // 查询点赞类通知 + ........... + // 查询关注类通知 + ........... + + // 查询未读消息数量 + int letterUnreadCount = messageService.findLetterUnreadCount(user.getId(), null); + model.addAttribute("letterUnreadCount", letterUnreadCount); + int noticeUnreadCount = messageService.findNoticeUnReadCount(user.getId(), null); + model.addAttribute("noticeUnreadCount", noticeUnreadCount); + + return "/site/notice"; +} + +/** + * 查询某个主题所包含的通知列表 + * @param topic + * @param page + * @param model + * @return + */ +@GetMapping("/notice/detail/{topic}") +public String getNoticeDetail(@PathVariable("topic") String topic, Page page, Model model) { + User user = hostHolder.getUser(); + + page.setLimit(5); + page.setPath("/notice/detail/" + topic); + page.setRows(messageService.findNoticeCount(user.getId(), topic)); + + List noticeList = messageService.findNotices(user.getId(), topic,page.getOffset(), page.getLimit()); + List> noticeVoList = new ArrayList<>(); + if (noticeList != null) { + for (Message notice : noticeList) { + Map map = new HashMap<>(); + // 通知 + map.put("notice", notice); + // 内容 + String content = HtmlUtils.htmlUnescape(notice.getContent()); + Map data = JSONObject.parseObject(content, HashMap.class); + map.put("user", userService.findUserById((Integer) data.get("userId"))); + map.put("entityType", data.get("entityType")); + map.put("entityId", data.get("entityId")); + map.put("postId", data.get("postId")); + // 发送系统通知的作者 + map.put("fromUser", userService.findUserById(notice.getFromId())); + + noticeVoList.add(map); + } + } + model.addAttribute("notices", noticeVoList); + + // 设置已读 + List ids = getUnreadLetterIds(noticeList); + if (!ids.isEmpty()) { + messageService.readMessage(ids); + } + + return "/site/notice-detail"; +} +``` + +存储在 message 表中的系统通知的 content 字段是 JSON 格式的 + +![](https://gitee.com/veal98/images/raw/master/img/20210128172348.png) + +我们需要获取这个 JSON 字符串,将其转化成对象然后转换成一条通知 + +前端的修改此处就不写了 + +## 拦截器 + +这里需要注意一下导航栏上面的未读消息数量(未读私信 + 未读系统通知)的实时更新。使用拦截器实现,在 Controller 之后模板之前调用: + +```java +@Component +public class MessageInterceptor implements HandlerInterceptor { + + @Autowired + private HostHolder hostHolder; + + @Autowired + private MessageService messageService; + + /** + * Controller之后模板之前被调用 + * 获取未读私信/系统通知的数量 + * @param request + * @param response + * @param handler + * @param modelAndView + * @throws Exception + */ + @Override + public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception { + User user = hostHolder.getUser(); + if (user != null && modelAndView != null) { + int letterUnreadCount = messageService.findLetterUnreadCount(user.getId(), null); + int noticeUnreadCount = messageService.findNoticeUnReadCount(user.getId(), null); + modelAndView.addObject("allUnreadCount", letterUnreadCount + noticeUnreadCount); + } + } +} +``` + +别忘记在 `WebMvcConfig` 中配置该拦截器 \ No newline at end of file diff --git a/log/community/error/log-error-2021-01-25.0.log b/log/community/error/log-error-2021-01-25.0.log new file mode 100644 index 00000000..4a9ae660 --- /dev/null +++ b/log/community/error/log-error-2021-01-25.0.log @@ -0,0 +1,630 @@ +2021-01-25 11:06:05,169 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "abc" +2021-01-25 11:06:05,174 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) +2021-01-25 11:06:05,174 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.valueOf(Integer.java:766) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterList(MessageController.java:37) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 11:13:09,251 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "asd" +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:615) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterTarget(MessageController.java:120) +2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterDetail(MessageController.java:101) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 11:13:09,259 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 11:13:09,259 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "asd" +2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) +2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:615) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterTarget(MessageController.java:120) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterDetail(MessageController.java:101) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:16:15,011 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:16:18,420 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 15:16:20,875 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) +2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) +2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) +2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) +2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 15:16:20,883 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 15:16:20,883 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "profile.html" +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 17:21:56,209 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id" +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-25 17:22:05,014 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id" +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) diff --git a/log/community/error/log-error-2021-01-27.0.log b/log/community/error/log-error-2021-01-27.0.log new file mode 100644 index 00000000..c7f3ba8e --- /dev/null +++ b/log/community/error/log-error-2021-01-27.0.log @@ -0,0 +1,147 @@ +2021-01-27 11:14:20,716 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "my-reply.html" +2021-01-27 11:14:20,718 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-27 11:14:20,718 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-27 11:14:20,718 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-27 11:14:20,718 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-27 11:14:20,718 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-27 11:14:20,718 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-27 11:14:20,718 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-27 11:14:20,719 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-27 11:14:20,720 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-27 11:14:20,721 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-27 11:14:20,722 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-27 11:14:20,723 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-27 11:14:20,723 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-27 11:14:20,723 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-27 11:14:20,723 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-27 11:14:20,723 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-27 14:33:53,368 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "my-post.html" +2021-01-27 14:33:53,368 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-27 14:33:53,368 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-27 14:33:53,368 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-27 14:33:53,368 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-27 14:33:53,369 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:53,370 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-27 14:33:53,371 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 14:33:53,372 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:53,372 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:53,372 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-27 14:33:53,372 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-27 14:33:53,372 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-27 14:33:53,372 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-27 14:33:53,372 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-27 14:33:53,373 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-27 14:33:53,374 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-27 14:33:53,374 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-27 14:33:53,374 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-27 14:33:54,764 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "my-reply.html" +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) +2021-01-27 14:33:54,765 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:54,766 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:54,767 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) +2021-01-27 14:33:54,768 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) +2021-01-27 14:33:54,769 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) diff --git a/log/community/info/log-info-2021-01-25.0.log b/log/community/info/log-info-2021-01-25.0.log new file mode 100644 index 00000000..692b0740 --- /dev/null +++ b/log/community/info/log-info-2021-01-25.0.log @@ -0,0 +1,4264 @@ +2021-01-25 11:05:35,022 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22600 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:05:35,027 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:05:35,067 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:05:35,067 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:05:35,670 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:05:35,672 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:05:35,683 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:05:35,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:05:35,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:05:35,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:05:35,700 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:05:35,701 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:05:35,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:05:35,885 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:05:35,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:05:35,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:05:35,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:05:35,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:05:35,967 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:05:36,090 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:05:36,093 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:05:36,329 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:05:36,419 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:05:36,420 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1352 ms +2021-01-25 11:05:36,884 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:05:36,946 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:05:39,099 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:05:39,116 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:05:39,128 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:05:39,138 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.515 seconds (JVM running for 5.444) +2021-01-25 11:05:44,930 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:05:44,931 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:05:44,933 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-25 11:05:55,003 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:05:55,269 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:06:48,805 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26704 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:06:48,808 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:06:48,851 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:06:48,852 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:06:49,526 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:06:49,526 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:06:49,541 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:06:49,543 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:06:49,543 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:06:49,551 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:06:49,561 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:06:49,561 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:06:49,576 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 11:06:49,771 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:06:49,863 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:06:49,987 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:06:49,990 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:06:50,243 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:06:50,351 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:06:50,351 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1498 ms +2021-01-25 11:06:50,899 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:06:50,960 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:06:53,891 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:06:53,906 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:06:53,915 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:06:53,924 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.478 seconds (JVM running for 6.287) +2021-01-25 11:08:25,915 INFO [http-nio-8080-exec-3] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:08:25,915 INFO [http-nio-8080-exec-3] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:08:25,916 INFO [http-nio-8080-exec-3] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:08:26,742 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:08:26,861 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:12:58,030 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7680 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:12:58,035 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:12:58,065 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:12:58,065 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:12:58,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:12:58,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:12:58,530 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:12:58,550 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:12:58,550 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:12:58,560 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:12:58,710 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:12:58,780 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:12:58,880 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:12:58,881 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:12:59,070 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:12:59,150 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:12:59,150 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1080 ms +2021-01-25 11:12:59,580 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:12:59,640 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:13:01,545 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:13:01,560 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:13:01,570 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:13:01,581 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.892 seconds (JVM running for 4.809) +2021-01-25 11:13:09,055 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:13:09,055 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:13:09,056 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 11:13:09,077 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:13:09,195 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:17:06,659 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 12892 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:17:06,659 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:17:06,694 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:17:06,694 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:17:07,169 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:17:07,169 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:17:07,189 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:17:07,199 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:17:07,199 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:17:07,209 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:17:07,359 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:17:07,429 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:17:07,519 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:17:07,519 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:17:07,714 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:17:07,789 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:17:07,789 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1095 ms +2021-01-25 11:17:08,211 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:17:08,259 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:17:10,149 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:17:10,169 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:17:10,180 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:17:10,180 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.864 seconds (JVM running for 4.748) +2021-01-25 11:17:13,607 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:17:13,607 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:17:13,608 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:17:13,627 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:17:13,742 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:18:34,589 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7512 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:18:34,589 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:18:34,619 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:18:34,619 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:18:35,089 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:18:35,089 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:18:35,099 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:18:35,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:18:35,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:18:35,119 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:18:35,273 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:18:35,344 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:18:35,444 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:18:35,444 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:18:35,634 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:18:35,719 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:18:35,719 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1100 ms +2021-01-25 11:18:36,159 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:18:36,209 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:18:38,139 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:18:38,149 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:18:38,159 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:18:38,169 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.899 seconds (JVM running for 4.762) +2021-01-25 11:18:44,095 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:18:44,096 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:18:44,097 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:18:45,817 INFO [http-nio-8080-exec-5] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:18:45,933 INFO [http-nio-8080-exec-5] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:19:54,333 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7840 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:19:54,333 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:19:54,369 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:19:54,369 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:19:54,849 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:19:54,850 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:19:54,860 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:19:54,863 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:19:54,864 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:19:54,867 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:19:54,876 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:19:54,877 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:19:54,886 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:19:55,042 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:19:55,082 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:19:55,109 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:19:55,208 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:19:55,213 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:19:55,429 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:19:55,513 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:19:55,513 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1144 ms +2021-01-25 11:19:55,924 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:19:55,976 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:19:57,891 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:19:57,906 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:19:57,914 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:19:57,919 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.933 seconds (JVM running for 4.815) +2021-01-25 11:20:00,181 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:20:00,181 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:20:00,182 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 11:20:00,205 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:20:00,325 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 11:22:03,497 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 19880 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 11:22:03,500 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 11:22:03,542 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 11:22:03,543 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 11:22:04,032 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:22:04,034 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:22:04,045 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 11:22:04,049 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:22:04,050 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 11:22:04,054 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 11:22:04,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 11:22:04,064 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 11:22:04,076 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 11:22:04,240 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 11:22:04,287 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 11:22:04,321 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 11:22:04,421 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 11:22:04,422 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 11:22:04,603 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 11:22:04,610 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 11:22:04,610 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 11:22:04,611 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 11:22:04,688 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 11:22:04,688 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1144 ms +2021-01-25 11:22:05,111 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 11:22:05,164 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 11:22:07,053 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 11:22:07,067 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 11:22:07,075 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 11:22:07,084 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.964 seconds (JVM running for 4.843) +2021-01-25 11:22:07,291 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 11:22:07,291 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 11:22:07,292 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 11:22:07,316 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 11:22:07,439 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 12:15:19,158 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 9892 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 12:15:19,160 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 12:15:19,193 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 12:15:19,194 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 12:15:19,685 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 12:15:19,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 12:15:19,696 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 12:15:19,699 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 12:15:19,700 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 12:15:19,703 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 12:15:19,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 12:15:19,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 12:15:19,722 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 12:15:19,874 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 12:15:19,914 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 12:15:19,947 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 12:15:20,129 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 12:15:20,131 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 12:15:20,354 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 12:15:20,360 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 12:15:20,360 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 12:15:20,361 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 12:15:20,467 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 12:15:20,468 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1273 ms +2021-01-25 12:15:20,933 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 12:15:20,997 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 12:15:23,067 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 12:15:23,082 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 12:15:23,090 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 12:15:23,099 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.337 seconds (JVM running for 5.242) +2021-01-25 12:15:32,637 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 12:15:32,638 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 12:15:32,640 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-25 12:15:32,655 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 12:15:32,669 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 12:15:32,790 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 12:15:32,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 12:15:32,851 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 12:15:32,857 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,861 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,870 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:32,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:33,476 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 12:15:33,482 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 12:15:33,483 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 12:15:33,489 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:43,533 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26424 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:15:43,538 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:15:43,568 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:15:43,568 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:15:44,043 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:15:44,043 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:15:44,064 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:15:44,074 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:15:44,074 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:15:44,086 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:15:44,242 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:15:44,273 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:15:44,318 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:15:44,474 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:15:44,483 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:15:44,708 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:15:44,859 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:15:44,859 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1286 ms +2021-01-25 15:15:45,541 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:15:45,608 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:15:47,236 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:15:47,237 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:15:47,237 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:15:47,485 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:15:47,501 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:15:47,510 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:15:47,519 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.317 seconds (JVM running for 5.156) +2021-01-25 15:15:51,093 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:15:51,093 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:15:51,094 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:15:51,105 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:51,118 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:15:51,246 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:15:51,275 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,289 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:15:51,306 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:15:51,312 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,330 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,936 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:51,940 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:51,944 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:51,946 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,955 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:53,958 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,964 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:15:53,966 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,968 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,981 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,984 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,985 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,987 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:53,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,995 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:53,996 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:53,997 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:53,998 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:53,999 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:54,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:54,002 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:54,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:54,005 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:15:54,006 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:15:54,126 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:54,129 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:57,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:15:57,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:15:57,005 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:16:08,467 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:08,469 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:08,482 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:08,484 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:15,002 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:15,004 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:15,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:16:18,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:18,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:18,407 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:16:20,867 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:16:20,869 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:16:20,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:32,821 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13960 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:17:32,824 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:17:32,855 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:17:32,855 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:17:33,343 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:17:33,346 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:17:33,355 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:17:33,358 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:17:33,358 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:17:33,362 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:17:33,371 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:17:33,372 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:17:33,382 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:17:33,536 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:17:33,576 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:17:33,577 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:17:33,578 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:17:33,578 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:17:33,580 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:17:33,612 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:17:33,776 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:17:33,777 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:17:34,009 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:17:34,144 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:17:34,145 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1289 ms +2021-01-25 15:17:34,759 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:17:34,824 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:17:36,673 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:17:36,688 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:17:36,697 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:17:36,706 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.23 seconds (JVM running for 5.052) +2021-01-25 15:17:41,257 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:17:41,258 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:17:41,259 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:17:41,270 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:41,285 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:17:41,402 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:17:41,428 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:17:41,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,467 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,476 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,478 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,481 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,484 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,486 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,489 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,496 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:41,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:41,500 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:41,502 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,082 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:42,085 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,925 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:42,927 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,928 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:17:42,930 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,931 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,933 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,936 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,941 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,943 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,945 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,946 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,947 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,948 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,949 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,951 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,952 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,953 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,954 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,956 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,957 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,958 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,960 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:42,961 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:42,962 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:17:42,963 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:17:43,065 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:43,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:44,292 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:44,294 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:44,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:44,878 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:44,880 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:47,977 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:47,979 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:47,980 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:47,983 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:47,984 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:49,164 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:49,167 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:49,169 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:49,172 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:49,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:50,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:50,454 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:50,455 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:50,457 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:50,458 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:51,852 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:51,854 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:51,856 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:51,857 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:51,859 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:52,968 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:52,970 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:52,971 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:52,973 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:52,974 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:56,127 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:56,129 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:56,130 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:56,132 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:56,133 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:57,654 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:57,656 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:57,658 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:57,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:57,661 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:58,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:58,639 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:58,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:58,642 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:58,643 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:17:59,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:17:59,386 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:17:59,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:17:59,389 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:17:59,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:18:00,656 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:18:00,657 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:18:00,659 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:18:00,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:18:00,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:18:04,184 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:18:04,187 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:18:04,188 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:18:04,190 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:18:04,190 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:21:47,700 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 15000 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:21:47,700 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:21:47,734 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:21:47,734 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:21:48,205 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:21:48,205 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:21:48,214 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:21:48,234 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:21:48,234 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:21:48,244 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:21:48,394 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:21:48,424 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:21:48,436 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:21:48,465 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:21:48,624 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:21:48,624 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:21:48,849 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:21:48,959 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:21:48,959 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1225 ms +2021-01-25 15:21:49,586 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:21:49,654 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:21:51,524 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:21:51,534 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:21:51,544 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:21:51,558 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.229 seconds (JVM running for 5.078) +2021-01-25 15:21:56,517 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:21:56,517 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:21:56,518 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:21:56,529 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:21:56,543 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:21:56,661 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:21:56,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:56,703 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:21:56,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:21:56,724 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:56,727 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,448 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,450 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,451 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,453 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,457 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,460 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,463 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,467 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:21:57,927 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:21:57,933 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:21:57,936 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:21:57,939 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:01,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:22:01,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,947 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,957 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,963 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,965 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,966 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,969 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,970 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,973 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,975 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,977 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,978 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,979 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:01,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:01,983 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:01,985 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:02,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:02,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:03,349 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:03,353 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:03,356 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:22:03,366 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:03,366 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:22:06,447 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:06,449 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:22:06,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:22:06,456 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,457 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,459 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,461 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,461 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,463 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,464 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,469 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,470 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,473 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,474 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,475 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,476 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,478 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,478 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,479 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:06,578 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:06,580 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:06,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:06,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:08,835 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,836 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:22:08,838 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,841 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,842 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,844 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,846 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,847 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,848 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,849 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,851 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,852 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,853 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,854 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,856 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,857 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,859 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,860 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,861 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,862 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,863 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:08,864 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:08,865 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:08,866 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:09,037 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:09,041 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:10,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:10,834 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:10,836 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:22:10,839 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:10,840 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:22:11,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:11,691 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:11,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:22:11,694 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:11,695 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:22:13,922 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:13,924 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,926 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:22:13,928 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:22:13,930 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,931 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,932 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,933 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,934 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,935 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,936 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,937 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,938 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,940 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,941 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,942 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,943 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,944 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,945 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,946 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,947 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,948 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:13,948 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:13,949 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:22:14,083 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:14,086 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:14,090 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:14,093 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,360 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:16,362 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,363 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:22:16,364 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,365 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,367 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,368 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,370 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,371 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,372 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,374 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,376 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,377 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,378 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,379 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,380 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,381 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,382 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,383 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,384 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,385 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,386 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,387 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:22:16,388 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:22:16,390 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:22:16,561 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:22:16,564 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:37:56,153 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24048 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:37:56,156 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:37:56,191 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:37:56,191 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:37:56,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:37:56,710 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:37:56,721 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:37:56,723 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:37:56,724 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:37:56,728 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:37:56,737 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:37:56,738 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:37:56,748 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:37:56,900 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:37:56,939 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:37:56,940 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:37:56,970 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:37:57,130 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:37:57,130 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:37:57,393 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:37:57,399 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:37:57,400 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:37:57,400 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:37:57,511 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:37:57,511 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1319 ms +2021-01-25 15:37:58,175 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:37:58,240 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:38:00,135 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:38:00,164 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:38:00,179 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:38:00,190 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.381 seconds (JVM running for 5.23) +2021-01-25 15:38:00,871 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:38:00,871 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:38:00,872 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:38:00,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:00,900 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:38:01,030 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:38:01,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:01,095 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:01,104 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,107 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,934 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,937 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,940 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,941 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,942 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,945 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,947 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,948 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,951 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,952 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:01,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:01,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:02,411 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:02,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:02,419 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:02,423 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:04,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,338 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:04,340 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,341 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,343 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,352 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,357 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,360 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,361 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,362 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,363 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,365 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,367 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,368 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,371 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,371 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,372 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,373 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,374 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,379 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,380 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,381 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,385 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,386 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,388 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,389 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,390 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,391 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,392 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,393 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,394 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,395 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:04,397 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:04,397 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:04,398 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:04,400 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:04,525 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:04,528 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:12,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:12,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,580 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:12,582 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:12,583 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:12,694 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:12,697 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:12,697 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:12,700 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:13,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:13,882 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:13,885 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:38:13,887 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:13,888 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:16,738 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:16,740 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,741 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:16,743 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:16,748 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,750 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,751 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,752 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,753 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,754 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,755 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,757 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,758 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,759 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,760 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,761 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,762 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,764 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,765 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,766 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,767 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,768 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,769 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,770 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:16,874 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:16,876 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:16,887 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:16,890 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:19,208 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:19,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:19,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:19,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:19,315 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:19,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:19,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:19,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,926 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:21,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,930 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:21,931 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,932 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,933 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,934 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,935 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,936 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,941 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,943 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,944 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,945 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,946 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,946 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,947 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,948 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,949 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,950 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,950 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,951 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,952 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,955 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,956 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,957 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,958 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,959 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,960 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,961 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,963 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,964 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:21,965 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:21,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:21,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:21,968 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:21,969 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:22,113 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:22,115 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:25,463 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:25,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:25,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 15:38:25,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:25,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:32,498 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:32,499 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:32,503 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.logout]. +2021-01-25 15:38:32,529 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:32,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,564 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,570 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.login]. +2021-01-25 15:38:41,596 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,598 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,599 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:41,600 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:41,602 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,604 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,605 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,607 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,609 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,610 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,611 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,611 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,612 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,614 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,615 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,619 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,621 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:41,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,729 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:41,737 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:41,739 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,288 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:43,290 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,292 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:43,293 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,294 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,295 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,295 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,298 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,299 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,300 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,300 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,302 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,304 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,305 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,307 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,309 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,310 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,311 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,312 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,313 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,314 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,314 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,315 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,316 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,318 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,319 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,320 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,321 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,322 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,323 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,324 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,325 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,326 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,326 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,328 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,329 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:43,330 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:43,330 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:38:43,331 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:43,332 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:43,439 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:43,441 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:46,864 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:46,866 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:46,867 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.logout]. +2021-01-25 15:38:46,889 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:46,989 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:48,050 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:48,052 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:48,053 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:48,055 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,056 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,057 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,058 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,060 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,061 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,062 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,063 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,066 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,068 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,069 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:48,071 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:48,187 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:48,196 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:50,018 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:50,019 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:38:50,020 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,022 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,022 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,024 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,026 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,026 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,028 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,029 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,029 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,031 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,032 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,036 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,040 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,041 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,042 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,043 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,044 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,047 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,048 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:50,049 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:50,050 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:38:50,051 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:38:50,188 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:53,666 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:53,758 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,001 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,004 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.login]. +2021-01-25 15:38:59,024 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,026 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,027 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:38:59,028 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:38:59,030 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,031 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,032 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,033 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,033 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,034 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,034 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,035 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,036 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,037 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,037 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,038 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,039 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,040 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,040 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,041 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,042 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,044 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,044 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,045 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:38:59,139 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,141 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:38:59,150 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:38:59,153 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:02,165 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26420 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:43:02,170 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:43:02,223 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:43:02,224 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:43:02,868 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:43:02,870 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:43:02,882 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:43:02,885 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:43:02,886 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:43:02,890 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:43:02,901 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:43:02,902 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:43:02,913 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 15:43:03,082 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:43:03,131 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:43:03,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:43:03,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:43:03,134 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:43:03,167 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:43:03,370 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:43:03,372 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:43:03,625 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:43:03,633 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:43:03,633 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:43:03,634 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:43:03,759 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:43:03,759 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1534 ms +2021-01-25 15:43:04,454 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:43:04,520 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:43:06,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:43:06,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:43:06,272 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:43:06,510 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:43:06,524 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:43:06,533 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:43:06,542 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.886 seconds (JVM running for 6.152) +2021-01-25 15:43:09,182 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:43:09,182 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:43:09,183 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:43:09,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:09,206 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:43:09,323 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:43:09,348 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:09,362 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:43:09,377 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:43:09,384 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:09,386 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,060 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,061 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,063 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,064 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,066 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,067 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,069 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,070 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,079 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,080 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,083 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:10,525 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:10,529 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:10,534 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:10,536 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,658 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:20,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,663 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:43:20,664 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:43:20,668 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,671 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,672 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,675 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,677 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,678 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,679 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,681 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,681 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,683 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,684 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,685 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,686 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,688 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,689 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,691 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,691 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,692 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,693 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,695 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:20,801 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:20,806 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:20,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:20,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:50,148 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:50,150 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:50,212 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:50,215 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,637 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:58,639 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,640 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:43:58,642 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:43:58,644 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,645 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,647 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,649 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,650 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,651 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,652 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,653 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,654 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,655 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,656 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,657 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,658 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,659 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,660 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,661 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,662 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,664 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,665 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,666 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:43:58,948 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:58,950 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:58,959 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:58,962 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:59,047 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:59,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:43:59,132 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:43:59,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,563 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,567 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:44:07,569 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:44:07,572 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,573 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,574 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,576 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,577 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,578 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,579 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,580 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,581 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,582 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,583 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,584 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,587 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,590 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,590 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,592 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:44:07,912 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,914 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,924 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,928 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:07,991 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:07,993 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:44:08,066 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:44:08,069 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:40,066 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 27004 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:46:40,069 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:46:40,098 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:46:40,099 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:46:40,599 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:46:40,600 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:46:40,612 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:46:40,615 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:46:40,615 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:46:40,620 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:46:40,630 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:46:40,631 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:46:40,642 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 15:46:40,819 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:46:40,869 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:46:40,870 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:46:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:46:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:46:40,907 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:46:41,088 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:46:41,090 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:46:41,407 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:46:41,415 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:46:41,415 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:46:41,416 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:46:41,578 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:46:41,579 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1480 ms +2021-01-25 15:46:42,493 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:46:42,572 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:46:44,270 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:46:44,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:46:44,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:46:44,523 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:46:44,538 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:46:44,546 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:46:44,556 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.862 seconds (JVM running for 5.849) +2021-01-25 15:46:47,295 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:46:47,296 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:46:47,297 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:46:47,307 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:47,320 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:46:47,437 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:46:47,463 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:47,477 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:46:47,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:46:47,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:47,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,331 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,332 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,334 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,335 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,337 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,338 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,340 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:46:48,894 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:48,900 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:48,904 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:48,910 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:58,905 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:58,907 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:46:58,969 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:46:58,971 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:50:08,603 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,607 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:50:08,609 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:50:08,613 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,614 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,615 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,618 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,619 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,621 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,622 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,624 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,625 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,626 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,627 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,630 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,631 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,632 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,633 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,635 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,636 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,638 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,639 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,640 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:50:08,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:50:08,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:08,925 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:50:08,927 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:50:55,409 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18380 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:50:55,412 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:50:55,443 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:50:55,444 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:50:55,917 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:50:55,919 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:50:55,928 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:50:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:50:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:50:55,936 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:50:55,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:50:55,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:50:55,954 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:50:56,102 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:50:56,146 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:50:56,147 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:50:56,147 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:50:56,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:50:56,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:50:56,179 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:50:56,332 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:50:56,334 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:50:56,546 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:50:56,552 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:50:56,553 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:50:56,553 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:50:56,664 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:50:56,666 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1222 ms +2021-01-25 15:50:57,293 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:50:57,356 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:50:59,969 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:50:59,970 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:50:59,970 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:51:00,215 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:51:00,229 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:51:00,238 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:51:00,247 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.225 seconds (JVM running for 6.366) +2021-01-25 15:51:01,355 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:51:01,356 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:51:01,357 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:51:01,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:51:01,383 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:51:01,502 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:51:01,531 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:01,546 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:51:01,563 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:51:01,569 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:01,571 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,320 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,323 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,331 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,332 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,333 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,334 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,335 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:51:02,777 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:51:02,782 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:02,786 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:51:02,793 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:51:57,276 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18972 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:51:57,279 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:51:57,310 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:51:57,310 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:51:57,770 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:51:57,771 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:51:57,781 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:51:57,784 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:51:57,785 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:51:57,788 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:51:57,797 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:51:57,798 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:51:57,808 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:51:57,957 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:51:58,004 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:51:58,037 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:51:58,188 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:51:58,190 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:51:58,401 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:51:58,407 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:51:58,408 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:51:58,408 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:51:58,520 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:51:58,520 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1209 ms +2021-01-25 15:51:59,181 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:51:59,253 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:52:02,167 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:52:02,182 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:52:02,191 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:52:02,200 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.241 seconds (JVM running for 6.362) +2021-01-25 15:52:07,598 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:52:07,599 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:52:07,600 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:52:07,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:52:07,624 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:52:07,740 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:52:07,766 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:07,780 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:52:07,794 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:52:07,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:07,801 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,577 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,579 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,580 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,582 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,587 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,589 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,594 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,596 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,597 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,598 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:08,599 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:08,601 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:52:09,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:52:09,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:52:09,051 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:52:09,053 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:55:56,008 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25568 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 15:55:56,011 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 15:55:56,039 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 15:55:56,040 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 15:55:56,508 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:55:56,509 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:55:56,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 15:55:56,522 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:55:56,523 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 15:55:56,527 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 15:55:56,536 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 15:55:56,537 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 15:55:56,546 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 15:55:56,698 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 15:55:56,743 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 15:55:56,745 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:55:56,745 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 15:55:56,775 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 15:55:56,931 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 15:55:56,932 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 15:55:57,147 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 15:55:57,270 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 15:55:57,271 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1231 ms +2021-01-25 15:55:57,953 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 15:55:58,018 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 15:55:59,917 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 15:55:59,932 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 15:55:59,941 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 15:55:59,949 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.28 seconds (JVM running for 5.285) +2021-01-25 15:56:02,871 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 15:56:02,871 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 15:56:02,872 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 15:56:02,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:02,896 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 15:56:03,014 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 15:56:03,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,053 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:03,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:03,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,075 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,816 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,819 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,821 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,822 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,824 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,828 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,829 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,830 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,831 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,833 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,836 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:03,837 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:03,838 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:04,287 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:04,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:04,296 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:04,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,245 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:31,247 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,249 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:31,251 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:31,257 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,260 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,261 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,264 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,265 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,267 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,269 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,270 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,271 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,272 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,275 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,276 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,280 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,281 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,282 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,283 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,285 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:31,523 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:31,526 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:31,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:31,535 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,128 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:33,130 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,132 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:33,133 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:33,136 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,137 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,139 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,141 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,142 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,144 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,145 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,146 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,147 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,148 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,149 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,150 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,151 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,152 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,153 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,155 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,156 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,158 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,159 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,160 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:33,256 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:33,259 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:33,266 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:33,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,902 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:44,905 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,906 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:44,907 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:44,910 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,911 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,912 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,914 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,914 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,915 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,923 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,927 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,927 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,931 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:44,932 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:44,933 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:45,169 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:45,174 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:45,179 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:45,181 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,430 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:46,432 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,434 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:56:46,441 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:56:46,447 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,448 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,453 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,454 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,458 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,459 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,460 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,464 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:46,469 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,472 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,474 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:46,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:46,592 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:46,602 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:46,604 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,069 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:54,071 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,073 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:54,075 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:54,077 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,079 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,079 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,080 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,081 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,082 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,083 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,084 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,084 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,085 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,086 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,087 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,087 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,091 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,092 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,094 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,094 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,095 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:54,200 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:54,203 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:54,213 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:54,215 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,703 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:55,705 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,706 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:56:55,709 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:56:55,714 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,715 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,719 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,720 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,723 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,724 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,725 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,729 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,730 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,732 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,733 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,734 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:55,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,738 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:55,843 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:55,847 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:55,856 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:55,858 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,890 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:56,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,892 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 15:56:56,895 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 15:56:56,898 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,899 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,900 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,901 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,901 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,902 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,903 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,904 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,904 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,905 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,906 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,907 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,907 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,908 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,909 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,910 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,911 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,913 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:56,914 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:56,915 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:56:57,010 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:57,013 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:57,022 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:57,024 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:58,072 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,073 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:56:58,077 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:56:58,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,084 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,087 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,088 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,089 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,092 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,102 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:56:58,104 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:56:58,210 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:58,214 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:56:58,219 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:56:58,221 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,057 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:39,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 15:58:39,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,076 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,081 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,082 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,085 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,086 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,086 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,087 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,089 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,090 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,091 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,091 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,092 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,096 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,098 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,102 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,105 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,106 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,108 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:39,110 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 15:58:39,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 15:58:39,112 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 15:58:39,113 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 15:58:39,230 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:39,232 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:46,112 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,114 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:58:46,117 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:58:46,122 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,124 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,127 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,128 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,129 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,132 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,133 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,134 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,138 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,139 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,140 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,141 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,142 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:58:46,143 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,146 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,148 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:58:46,250 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:46,252 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:58:46,280 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:58:46,282 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:04,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:04,563 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:04,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:04,569 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:04,811 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:04,813 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:06,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,348 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 15:59:06,352 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 15:59:06,355 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,356 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,367 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,374 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 15:59:06,376 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 15:59:06,475 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:06,477 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 15:59:06,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 15:59:06,487 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:00:43,299 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,300 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:00:43,303 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:00:43,307 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,308 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,312 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,314 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,319 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,323 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,324 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,325 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,326 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,327 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:00:43,329 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,333 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:00:43,562 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:00:43,565 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:00:43,570 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:00:43,571 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:33,834 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24188 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 16:01:33,839 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 16:01:33,892 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 16:01:33,892 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 16:01:34,634 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:01:34,636 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:01:34,648 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 16:01:34,652 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:01:34,653 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:01:34,657 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 16:01:34,669 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:01:34,670 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 16:01:34,682 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 16:01:34,876 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 16:01:34,928 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 16:01:34,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:01:34,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:01:34,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:01:34,970 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 16:01:35,165 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 16:01:35,167 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 16:01:35,445 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 16:01:35,458 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 16:01:35,459 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 16:01:35,459 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 16:01:35,586 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 16:01:35,586 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1693 ms +2021-01-25 16:01:36,291 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 16:01:36,354 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 16:01:38,358 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 16:01:38,376 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 16:01:38,386 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 16:01:38,398 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.128 seconds (JVM running for 6.344) +2021-01-25 16:01:38,437 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 16:01:38,437 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 16:01:38,438 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 16:01:38,451 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:38,467 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 16:01:38,610 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 16:01:38,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,657 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:01:38,666 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:01:38,673 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,674 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,691 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,697 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,701 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,705 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,707 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,708 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,714 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:38,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:38,720 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:38,723 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:39,448 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:39,454 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:39,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:39,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,186 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:42,187 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,189 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 16:01:42,195 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 16:01:42,198 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,199 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,779 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,781 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,782 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,783 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,785 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,786 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,787 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,789 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,791 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,792 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,793 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,796 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,797 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,799 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,800 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,801 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,802 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,804 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:42,910 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:42,913 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:42,920 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:42,922 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,561 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:51,563 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,564 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:01:51,567 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:01:51,572 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,574 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,577 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,579 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,580 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,583 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,584 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,585 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,589 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,591 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,592 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,593 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,594 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:51,595 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,598 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,599 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:51,710 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:51,713 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:51,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:51,722 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,599 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:54,601 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,602 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:01:54,606 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:01:54,610 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,612 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,617 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,618 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,620 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,622 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,623 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,627 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,628 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,630 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,631 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,632 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:01:54,633 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,636 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:01:54,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:54,747 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:54,754 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:54,756 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,395 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:56,397 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,398 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 16:01:56,399 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 16:01:56,403 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,404 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,405 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,406 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,407 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,409 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,410 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,412 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,413 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,415 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,417 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,418 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,419 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,420 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,421 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,422 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,423 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,424 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 16:01:56,522 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:56,523 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:01:56,534 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:01:56,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,512 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:15,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:02:15,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:02:15,524 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,529 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,530 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,531 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,533 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,536 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,539 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,540 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,541 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,542 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,543 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:15,544 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,547 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,548 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:15,791 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:15,794 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:15,799 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:15,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:18,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:18,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:18,713 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:18,714 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:18,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:18,819 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,235 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:20,237 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,242 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:20,244 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:02:20,245 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,246 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,248 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:20,393 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:20,396 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,962 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:33,964 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,965 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:02:33,969 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:02:33,973 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,974 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,976 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,977 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,981 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,984 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,989 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:02:33,993 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:33,995 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:33,996 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:02:34,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:34,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:02:34,285 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:02:34,287 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,605 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:03:32,607 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,608 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:03:32,609 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:03:32,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,613 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,614 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:03:32,855 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:03:32,857 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,438 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:06,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,441 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:06,443 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:04:06,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,448 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,449 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:06,688 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:06,689 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:22,771 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26164 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 16:04:22,773 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 16:04:22,804 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 16:04:22,805 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 16:04:23,267 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:04:23,269 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:04:23,279 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 16:04:23,281 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:04:23,281 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 16:04:23,285 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 16:04:23,294 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 16:04:23,295 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 16:04:23,304 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 16:04:23,453 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 16:04:23,490 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 16:04:23,521 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 16:04:23,675 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 16:04:23,677 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 16:04:23,895 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 16:04:23,901 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 16:04:23,902 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 16:04:23,902 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 16:04:24,003 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 16:04:24,004 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1199 ms +2021-01-25 16:04:24,616 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 16:04:24,679 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 16:04:26,518 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 16:04:26,533 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 16:04:26,542 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 16:04:26,550 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.111 seconds (JVM running for 4.969) +2021-01-25 16:04:29,519 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 16:04:29,520 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 16:04:29,521 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 16:04:29,532 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:29,544 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 16:04:29,661 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 16:04:29,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,702 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:04:29,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:04:29,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,731 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,733 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,735 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,740 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,742 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,745 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,747 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,748 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,750 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,753 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:29,755 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:29,758 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:29,760 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:30,318 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:30,325 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:30,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:30,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,582 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:31,584 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,586 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:04:31,590 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:04:31,594 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,596 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,599 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,601 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,602 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,607 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,609 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,610 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,613 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,615 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,616 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,617 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,619 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:31,620 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,623 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,625 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:04:31,726 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:31,729 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:31,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:31,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,131 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:45,134 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,140 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:04:45,141 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:04:45,143 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,144 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,145 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,146 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:04:45,385 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:04:45,389 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,349 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:04,351 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,352 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:05:04,355 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:05:04,361 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,363 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,366 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,367 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,369 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,372 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,373 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,374 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,377 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,378 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,379 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,380 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,381 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:04,382 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,385 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,386 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:04,619 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:04,621 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:04,629 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:04,631 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,654 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:05,656 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,657 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:05:05,662 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:05:05,667 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,668 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,671 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,672 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,673 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,678 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,679 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,680 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,683 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:05,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:05,788 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:05,790 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:05,797 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:05,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:07,979 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:07,981 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:07,996 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:07,998 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,289 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:35,292 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,293 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:35,296 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:05:35,298 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,300 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,301 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,302 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:35,542 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:35,545 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,404 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:44,406 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,407 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:44,408 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:05:44,409 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,410 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,411 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,412 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:44,552 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:44,555 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,096 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:52,098 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,099 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 16:05:52,102 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 16:05:52,106 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,107 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,111 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,112 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,113 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,116 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,117 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,118 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,121 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,123 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,124 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,125 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,127 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:05:52,128 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,131 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,132 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 16:05:52,237 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:52,239 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:05:52,244 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:05:52,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:16,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:16,800 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:16,804 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:16,806 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:16,916 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:16,918 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,154 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:19,155 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,157 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 16:06:19,158 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 16:06:19,159 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,160 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,161 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 16:06:19,266 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 16:06:19,269 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:41,926 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2088 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:19:41,929 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:19:41,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:19:41,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:19:42,466 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:19:42,467 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:19:42,477 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:19:42,480 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:19:42,481 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:19:42,485 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:19:42,494 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:19:42,495 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:19:42,504 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 17:19:42,662 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:19:42,702 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:19:42,737 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:19:42,900 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:19:42,902 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:19:43,133 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:19:43,139 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:19:43,140 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:19:43,140 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:19:43,248 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:19:43,248 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1279 ms +2021-01-25 17:19:43,899 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:19:43,968 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:19:46,598 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:19:46,599 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:19:46,599 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:19:46,874 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:19:46,891 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:19:46,900 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:19:46,910 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.349 seconds (JVM running for 6.187) +2021-01-25 17:19:47,660 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:19:47,660 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:19:47,662 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:19:47,676 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:47,692 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:19:47,821 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:19:47,849 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:19:47,874 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:19:47,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,901 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,908 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,910 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,914 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,916 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,917 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,919 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,924 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:19:47,927 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:47,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:47,933 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:19:48,530 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:48,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:48,535 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:48,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:52,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:52,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:52,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:19:52,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:19:52,388 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:52,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,055 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,058 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,059 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,060 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,062 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,065 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,067 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,068 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,071 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,072 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,073 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,074 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,076 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,077 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,078 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:19:53,182 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:53,187 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:19:53,194 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:19:53,197 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,308 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:02,310 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:02,317 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,336 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,338 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,341 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,344 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,348 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,349 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,350 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,351 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,352 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,354 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,356 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,358 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,360 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,362 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,365 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,367 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,369 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,370 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,374 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,378 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:02,380 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:02,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:02,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:02,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:02,636 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:02,639 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:05,151 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:05,154 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:05,156 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:05,158 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:05,269 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:05,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,375 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:08,377 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,379 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:08,380 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,381 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,382 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,383 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,385 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,386 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,391 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,392 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,394 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,395 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,398 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,399 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,400 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,401 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,402 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,403 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,404 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,407 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,408 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,412 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,414 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,416 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:08,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:08,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:08,420 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:08,421 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:08,525 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:08,530 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:10,099 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:10,100 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:10,102 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:10,132 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:10,133 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:12,041 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:12,043 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:12,109 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:12,111 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:12,258 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:12,262 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,879 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:15,881 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,882 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:15,884 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,886 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,887 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,888 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,890 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,892 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,893 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,894 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,895 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,896 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,897 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,898 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,899 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,900 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,902 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,903 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,904 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,906 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,907 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,908 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,909 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,911 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,912 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,913 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,914 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,914 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,915 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,916 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,917 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,918 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,920 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:15,922 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:15,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:15,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:15,924 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:15,925 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:16,030 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:16,032 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:18,692 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:18,694 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:18,695 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:18,701 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:18,702 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:20,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,370 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:20,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,376 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,380 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,386 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,387 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,388 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,390 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,391 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,392 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,393 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,394 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,395 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,396 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,396 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,397 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,399 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,400 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,401 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,402 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,402 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,403 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:20,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:20,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:20,406 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:20,407 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:20,498 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:20,500 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,234 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:25,236 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,237 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:20:25,241 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:20:25,245 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,246 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,249 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,250 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,251 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,254 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,255 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,257 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,260 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,262 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,262 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,264 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,265 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:25,266 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,269 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,270 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:25,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:25,408 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:25,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:25,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:39,525 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:39,526 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:39,527 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:39,528 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:39,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:39,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:40,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:40,674 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:40,675 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:40,676 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:40,764 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:40,766 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,222 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:44,225 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,227 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:44,228 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,229 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,230 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,230 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,232 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,233 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,233 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,234 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,235 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,236 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,236 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,237 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,238 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,239 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,239 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,241 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,243 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,244 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,244 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,245 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,246 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,248 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,249 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,250 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,253 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,257 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,259 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:44,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:44,261 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:44,262 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:44,263 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:44,362 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:44,364 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:45,820 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:45,822 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:45,824 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:45,830 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:45,831 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:48,454 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:48,456 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:48,457 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:48,462 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:48,463 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:49,939 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:49,940 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:49,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:20:49,947 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:49,948 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,333 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:51,334 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,336 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:20:51,340 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,341 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,342 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,343 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,345 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,349 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,351 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,354 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,355 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,356 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,359 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,361 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,365 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,366 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,367 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,368 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,369 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,369 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,371 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,373 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:51,374 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:51,375 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:20:51,375 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:20:51,376 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:20:51,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:51,471 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,066 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:52,068 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,069 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:20:52,074 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:20:52,077 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,078 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,082 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,086 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,089 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,093 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,094 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:20:52,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,101 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:20:52,199 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:52,201 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:52,212 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:52,214 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:54,797 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:54,799 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:54,803 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:54,805 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:54,906 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:54,908 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,732 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:56,733 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,734 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:20:56,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:20:56,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,738 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,741 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,741 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,743 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,745 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,745 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,746 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,747 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,748 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,748 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,750 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,751 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,751 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:20:56,848 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:56,850 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:56,856 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:56,858 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:58,004 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:58,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:58,007 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:58,008 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:58,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:58,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:59,413 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:59,415 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:59,416 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:20:59,417 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:20:59,509 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:20:59,511 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:03,728 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,730 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:21:03,734 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:21:03,739 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,740 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,742 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,743 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,744 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,748 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,749 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,750 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,753 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,754 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,755 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,756 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,757 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:21:03,758 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,760 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,761 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:21:03,860 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:03,862 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:03,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:03,873 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:05,591 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:05,594 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:05,597 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:05,598 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:05,692 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:05,695 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:45,841 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2820 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:21:45,846 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:21:45,912 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:21:45,913 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:21:46,674 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:21:46,676 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:21:46,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:21:46,694 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:21:46,695 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:21:46,701 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:21:46,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:21:46,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:21:46,726 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 17:21:46,936 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:21:46,982 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:21:46,983 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:21:46,983 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:21:46,985 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:21:46,985 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:21:47,022 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:21:47,213 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:21:47,215 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:21:47,480 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:21:47,488 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:21:47,489 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:21:47,489 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:21:47,677 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:21:47,677 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1762 ms +2021-01-25 17:21:48,421 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:21:48,489 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:21:51,443 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:21:51,458 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:21:51,466 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:21:51,474 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.78 seconds (JVM running for 8.569) +2021-01-25 17:21:51,578 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:21:51,578 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:21:51,580 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-25 17:21:51,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:51,605 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:21:51,725 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:21:51,752 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:51,766 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:21:51,781 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:21:51,786 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:51,788 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,566 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,568 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,570 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,572 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,573 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,575 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,576 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,578 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,579 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,582 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,588 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,589 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:52,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:52,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:53,810 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:53,810 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:53,818 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:53,824 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:55,041 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,047 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:21:55,049 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,050 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,052 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,061 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,067 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,071 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,073 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,079 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,084 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,086 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,087 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,088 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,090 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,093 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,094 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,095 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,096 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,097 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,099 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,100 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,101 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,102 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,104 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,105 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,106 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,107 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,108 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,110 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:55,111 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:21:55,112 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:21:55,113 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:21:55,114 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:21:55,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:55,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:56,205 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:56,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:56,231 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:56,233 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:21:56,339 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:21:56,342 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,034 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:04,036 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,037 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:22:04,039 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,040 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,042 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,044 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,047 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,048 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,051 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,052 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,053 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,054 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,055 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,058 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,059 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,061 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,065 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,067 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,068 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,069 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,070 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,070 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,071 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,072 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,073 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,074 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,075 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,076 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,077 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,079 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:04,080 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:04,080 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:04,081 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:04,082 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:04,175 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:04,177 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:05,011 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:05,013 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:05,035 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:05,037 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:05,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:05,159 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:48,709 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18340 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:22:48,716 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:22:48,830 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:22:48,831 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:22:49,752 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:22:49,754 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:22:49,770 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:22:49,774 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:22:49,775 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:22:49,781 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:22:49,794 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:22:49,795 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:22:49,810 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2021-01-25 17:22:50,025 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:22:50,076 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:22:50,077 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:22:50,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:22:50,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:22:50,136 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:22:50,375 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:22:50,378 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:22:50,706 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:22:50,715 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:22:50,715 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:22:50,716 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:22:50,867 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:22:50,867 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2035 ms +2021-01-25 17:22:51,734 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:22:51,813 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:22:53,492 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:22:53,493 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:22:53,493 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:22:53,732 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:22:53,747 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:22:53,755 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:22:53,764 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.069 seconds (JVM running for 7.972) +2021-01-25 17:22:53,798 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:22:53,798 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:22:53,799 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:22:53,811 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:53,824 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:22:53,945 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:22:53,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:53,990 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:22:53,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:53,997 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,820 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,822 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,823 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,828 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,831 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,836 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,838 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,843 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,846 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,847 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,851 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,853 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,854 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,856 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,866 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,878 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,880 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,887 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,889 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:54,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:54,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:22:54,896 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:22:54,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:22:54,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:22:56,164 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:56,170 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:58,948 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:58,950 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:58,952 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:22:58,953 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:22:59,150 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:22:59,153 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:18,923 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 20712 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:25:18,930 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:25:19,010 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:25:19,011 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:25:19,853 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:25:19,855 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:25:19,871 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:25:19,875 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:25:19,876 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:25:19,881 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:25:19,894 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:25:19,895 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:25:19,909 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2021-01-25 17:25:20,122 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:25:20,179 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:25:20,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:25:20,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:25:20,183 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:25:20,221 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:25:20,406 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:25:20,408 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:25:20,644 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:25:20,650 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:25:20,650 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:25:20,651 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:25:20,768 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:25:20,768 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1755 ms +2021-01-25 17:25:21,471 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:25:21,541 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:25:23,220 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:25:23,220 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:25:23,221 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:25:23,507 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:25:23,525 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:25:23,537 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:25:23,550 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.355 seconds (JVM running for 6.255) +2021-01-25 17:25:43,526 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:25:43,527 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:25:43,528 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:25:43,540 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:43,553 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:25:43,672 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:25:43,698 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:43,717 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:25:43,722 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:43,724 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,407 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,416 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,423 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,426 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,427 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,428 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,431 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,433 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,435 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,436 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,438 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,441 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,442 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,445 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,447 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,450 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,453 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,460 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,462 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,468 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:44,473 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:25:44,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:25:44,475 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:25:44,476 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:25:44,935 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:44,939 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:46,899 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:46,901 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:46,903 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:46,904 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:25:47,010 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:47,013 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:25:47,022 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:25:47,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:38,861 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2660 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:26:38,865 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:26:38,923 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:26:38,924 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:26:39,889 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:26:39,893 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:26:39,922 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 21 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:26:39,933 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:26:39,934 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:26:39,946 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:26:39,970 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:26:39,973 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:26:40,001 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. +2021-01-25 17:26:40,407 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:26:40,493 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:26:40,496 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:26:40,497 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:26:40,498 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:26:40,499 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:26:40,499 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:26:40,500 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:26:40,500 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:26:40,572 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:26:40,879 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:26:40,882 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:26:41,254 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:26:41,272 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:26:41,273 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:26:41,273 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:26:41,422 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:26:41,422 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2496 ms +2021-01-25 17:26:42,290 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:26:42,374 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:26:44,225 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:26:44,226 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:26:44,226 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:26:44,470 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:26:44,485 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:26:44,494 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:26:44,502 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.283 seconds (JVM running for 7.919) +2021-01-25 17:26:44,616 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:26:44,616 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:26:44,617 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:26:44,629 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:44,643 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:26:44,761 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:26:44,790 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:44,809 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:26:44,813 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:44,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,915 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,929 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,939 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,945 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,956 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,964 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,965 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,968 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,973 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:45,978 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,982 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,984 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,987 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:45,991 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:45,993 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:45,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:45,997 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:45,999 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:46,001 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:46,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:46,006 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:46,007 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:46,009 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:46,011 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:46,014 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:46,015 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:46,016 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:46,019 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:46,977 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:46,983 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,464 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:48,467 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,469 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:26:48,470 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,471 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,473 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,474 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,476 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,481 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,482 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,483 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,486 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,487 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,488 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,489 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,490 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,492 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,492 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,493 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,495 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,496 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,497 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,498 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,500 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,502 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,503 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,505 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,506 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,509 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,510 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,511 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,512 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,513 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,514 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,516 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:48,517 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:48,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:48,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:26:48,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:26:48,622 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:48,624 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,143 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:53,145 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,148 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,149 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:26:53,253 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:53,255 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:53,265 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:53,267 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:55,567 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:55,569 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:55,571 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:26:55,600 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:26:55,601 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:26:57,027 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:57,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:57,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:57,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:26:57,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:57,159 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:26:57,170 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:26:57,172 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,193 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:13,194 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-25 17:27:13,241 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:13,242 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,243 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-25 17:27:13,245 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,246 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,248 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,253 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,254 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,257 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,258 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,259 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,261 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,262 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,264 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,265 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,266 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,268 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,269 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,271 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,273 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,274 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,274 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,275 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,279 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,280 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,282 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,283 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,284 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,285 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,286 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:13,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:13,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:13,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-25 17:27:13,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-25 17:27:13,541 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:13,543 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:27,051 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:27,053 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:27,054 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:27,055 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:27,293 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:27,296 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:29,588 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:29,590 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:29,592 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:27:29,599 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:29,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:30,654 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:30,655 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:30,657 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:30,658 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:30,759 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:30,761 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:34,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:34,568 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:34,569 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.like]. +2021-01-25 17:27:34,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:27:34,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-25 17:27:35,376 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:35,377 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:35,379 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:35,380 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:35,479 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:35,482 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:37,305 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:37,307 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:37,308 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:37,309 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:37,430 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:37,432 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:47,267 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:47,269 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:47,270 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:47,271 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:27:47,367 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:47,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,204 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:52,207 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,208 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:27:52,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:27:52,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,222 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,235 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,237 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,238 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,242 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,243 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,244 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,247 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,248 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,249 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,250 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,251 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:27:52,252 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,255 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,256 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:27:52,357 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:52,360 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:52,368 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:52,370 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:54,976 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:54,977 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:54,982 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:54,984 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:27:55,089 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:27:55,091 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:07,855 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 14904 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:29:07,858 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:29:07,888 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:29:07,889 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:29:08,348 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:29:08,349 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:29:08,359 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:29:08,363 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:29:08,364 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:29:08,367 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:29:08,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:29:08,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:29:08,386 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 17:29:08,542 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:29:08,585 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:29:08,616 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:29:08,770 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:29:08,772 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:29:08,983 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:29:08,989 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:29:08,990 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:29:08,990 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:29:09,106 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:29:09,106 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1216 ms +2021-01-25 17:29:09,755 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:29:09,817 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:29:11,427 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:29:11,428 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:29:11,428 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:29:11,668 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:29:11,682 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:29:11,690 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:29:11,699 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.218 seconds (JVM running for 5.17) +2021-01-25 17:29:34,671 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:29:34,672 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:29:34,673 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-25 17:29:34,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:34,697 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:29:34,815 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:29:34,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:29:34,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:29:34,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,891 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,904 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,908 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,910 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,913 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:29:34,914 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:34,918 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:34,920 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:29:35,474 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:35,478 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:35,480 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:35,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:37,846 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:37,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:37,850 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:37,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:29:38,582 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:38,585 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:38,598 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:38,601 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:40,546 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:40,549 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:40,551 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:40,552 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:29:40,654 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:40,658 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:44,768 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:44,771 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:44,774 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:29:44,775 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:29:44,874 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:29:44,876 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,707 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:30:15,709 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:30:15,716 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:30:15,718 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:30:15,999 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:30:16,002 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,009 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:30,011 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,012 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:32:30,017 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:32:30,021 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,022 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,025 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,027 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,028 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,031 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,033 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,034 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,037 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,038 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,039 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,042 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:30,043 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,048 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:32:30,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:30,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:30,302 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:30,304 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:31,651 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,653 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:31,654 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:32:31,656 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,657 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,658 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,659 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:31,767 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:31,770 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,271 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:33,273 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,275 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:32:33,276 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:32:33,277 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,278 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,279 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,281 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,282 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,284 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:33,389 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:32:33,391 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:32:39,562 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26132 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:32:39,564 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:32:39,601 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:32:39,601 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:32:40,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:32:40,065 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:32:40,075 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:32:40,077 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:32:40,078 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:32:40,082 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:32:40,091 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:32:40,092 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:32:40,103 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-25 17:32:40,256 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:32:40,299 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:32:40,331 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:32:40,483 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:32:40,485 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:32:40,693 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:32:40,812 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:32:40,812 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1210 ms +2021-01-25 17:32:41,430 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:32:41,492 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:32:44,339 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:32:44,353 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:32:44,362 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:32:44,371 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.147 seconds (JVM running for 6.1) +2021-01-25 17:33:12,570 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:33:12,570 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:33:12,571 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 17:33:12,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:12,595 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:33:12,712 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:33:12,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,760 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:33:12,765 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:33:12,770 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,773 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,777 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,780 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,784 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:12,786 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:13,381 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:13,387 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:14,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:14,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:14,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:14,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:14,609 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:14,613 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:31,942 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25756 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-25 17:33:31,946 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-25 17:33:31,999 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-25 17:33:32,000 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-25 17:33:32,672 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:33:32,674 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:33:32,687 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-25 17:33:32,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:33:32,691 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-25 17:33:32,696 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-25 17:33:32,707 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-25 17:33:32,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-25 17:33:32,720 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-25 17:33:32,896 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-25 17:33:32,944 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-25 17:33:32,980 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-25 17:33:33,149 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-25 17:33:33,151 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-25 17:33:33,382 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-25 17:33:33,389 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-25 17:33:33,390 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-25 17:33:33,390 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-25 17:33:33,504 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-25 17:33:33,504 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1503 ms +2021-01-25 17:33:34,277 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-25 17:33:34,355 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-25 17:33:37,333 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-25 17:33:37,347 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-25 17:33:37,355 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-25 17:33:37,363 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.015 seconds (JVM running for 6.951) +2021-01-25 17:33:45,832 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-25 17:33:45,832 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-25 17:33:45,833 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-25 17:33:45,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:45,859 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-25 17:33:45,976 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-25 17:33:46,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:33:46,031 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:33:46,035 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,037 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,040 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,042 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,044 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:46,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:46,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,548 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:52,550 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,552 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:33:52,554 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-25 17:33:52,557 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,559 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,561 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,563 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,565 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,566 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:52,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:52,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:54,022 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:54,025 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:54,028 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:54,031 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:33:54,871 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:54,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:58,084 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:58,087 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:58,090 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:33:58,092 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:33:58,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:33:58,420 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:03,365 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:03,367 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:03,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:03,370 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:34:03,623 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:03,626 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:05,746 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:05,748 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:05,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:05,750 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:34:06,022 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:06,026 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:21,662 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,663 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:34:21,668 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:34:21,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,674 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,689 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,690 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,691 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,694 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,695 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,697 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,701 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,702 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,704 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,705 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,706 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:21,707 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,712 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:21,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:21,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:21,827 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:21,829 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,543 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:23,546 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,547 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:34:23,552 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:34:23,555 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,556 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,558 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,560 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,562 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,563 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,565 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,567 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,570 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,571 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,572 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,573 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:23,681 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:23,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:23,695 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:23,697 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,078 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:25,079 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,081 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:34:25,084 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:34:25,089 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,091 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,094 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,095 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,097 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,101 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,103 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,104 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,106 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,107 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,108 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,110 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,111 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:34:25,112 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,115 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:34:25,212 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:25,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:25,222 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:25,225 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:26,356 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:26,358 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:26,359 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:26,360 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-25 17:34:26,460 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:26,463 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,029 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:58,031 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,032 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:34:58,033 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:34:58,037 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,038 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,039 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,040 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,041 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,044 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,045 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,046 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,048 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,051 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,051 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,055 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,057 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,058 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,060 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:34:58,289 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:58,291 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:34:58,302 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:34:58,304 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:36:24,625 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:36:24,627 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:36:24,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:36:24,694 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,845 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:15,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,850 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-25 17:39:15,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-25 17:39:15,853 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,854 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,856 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,857 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,858 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,861 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,864 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,866 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,868 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,871 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,872 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,873 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,874 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,875 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,876 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:15,876 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:15,877 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-25 17:39:16,154 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,156 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,852 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:39:16,855 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:39:16,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,864 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,865 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,866 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,869 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,871 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,874 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,875 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,877 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,878 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,879 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:39:16,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,883 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,884 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:39:16,984 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,985 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:16,991 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:16,993 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:19,706 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:19,707 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:39:19,720 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:39:19,721 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,843 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:40:15,845 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,847 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-25 17:40:15,850 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-25 17:40:15,853 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,854 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,857 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,859 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,861 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,864 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,865 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,866 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,868 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,869 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,870 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,872 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-25 17:40:15,873 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:15,877 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:15,878 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-25 17:40:16,109 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:40:16,111 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:16,118 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-25 17:40:16,119 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-25 17:40:46,940 INFO [lettuce-nioEventLoop-4-1] i.l.c.p.CommandHandler [AbstractInternalLogger.java:217] null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。 +java.io.IOException: 远程主机强迫关闭了一个现有的连接。 + at sun.nio.ch.SocketDispatcher.read0(Native Method) + at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43) + at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) + at sun.nio.ch.IOUtil.read(IOUtil.java:192) + at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) + at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:253) + at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1134) + at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:350) + at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:719) + at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:655) + at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:581) + at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) + at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) + at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) + at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) + at java.lang.Thread.run(Thread.java:748) +2021-01-25 17:40:47,037 INFO [lettuce-eventExecutorLoop-1-12] i.l.c.p.ConnectionWatchdog [AbstractInternalLogger.java:171] Reconnecting, last destination was localhost/127.0.0.1:6379 diff --git a/log/community/info/log-info-2021-01-27.0.log b/log/community/info/log-info-2021-01-27.0.log new file mode 100644 index 00000000..30de0f1e --- /dev/null +++ b/log/community/info/log-info-2021-01-27.0.log @@ -0,0 +1,3352 @@ +2021-01-27 11:11:39,286 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 9568 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 11:11:39,291 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 11:11:39,331 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 11:11:39,331 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 11:11:39,921 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 11:11:39,924 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 11:11:39,937 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 11:11:39,941 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 11:11:39,941 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 11:11:39,945 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 11:11:39,955 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 11:11:39,955 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 11:11:39,965 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 11:11:40,131 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 11:11:40,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 11:11:40,211 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 11:11:40,396 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 11:11:40,396 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 11:11:40,621 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 11:11:40,631 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 11:11:40,631 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 11:11:40,631 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 11:11:40,751 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 11:11:40,751 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1420 ms +2021-01-27 11:11:41,456 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 11:11:41,531 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 11:11:43,211 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 11:11:43,211 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 11:11:43,211 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 11:11:43,471 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 11:11:43,486 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 11:11:43,491 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 11:11:43,501 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.61 seconds (JVM running for 5.441) +2021-01-27 11:13:36,831 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 11:13:36,831 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 11:13:36,831 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-27 11:13:46,369 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:46], 访问了[com.greate.community.service.UserService.login]. +2021-01-27 11:13:46,389 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 11:13:46,528 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 11:13:46,598 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:46,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:46,606 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:46], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 11:13:46,630 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:46], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 11:13:46,636 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:46,638 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,189 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,192 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,194 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,195 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,196 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,198 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,199 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,201 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,202 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,204 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,205 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,206 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,208 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,209 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,210 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,212 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,213 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,215 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:47,336 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:47,341 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:47,347 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:47,352 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,757 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:49,760 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,762 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 11:13:49,763 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 11:13:49,767 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,770 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,771 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,773 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,775 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,777 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,777 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,779 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,779 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,781 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,782 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,783 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,784 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,785 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,785 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,788 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,789 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,791 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,792 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,794 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:49,884 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:49,886 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:49,893 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:49,895 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,744 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:53,747 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,755 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 11:13:53,757 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,759 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,760 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,774 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:13:53,781 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,782 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,783 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,784 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:13:53,786 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,789 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,789 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,791 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,791 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,792 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,793 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,794 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,795 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,795 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:13:53,797 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,798 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,800 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,800 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:13:53,801 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:13:53,802 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,803 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,805 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,805 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:13:53,806 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:13:53,807 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,808 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,809 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,810 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:13:53,811 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:13:53,812 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:53,813 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:53,814 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:53,815 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:13:53,816 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:13:53,946 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:53,950 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:55,063 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:55,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:55,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:55], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:13:55,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:55,110 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:56,644 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:56,646 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:56,648 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:56], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:13:56,653 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:56,654 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:13:57,416 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:13:57,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:13:57,421 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:57], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:13:57,427 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:13:57,428 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:13:57], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:14:00,184 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:00,186 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,188 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 11:14:00,189 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 11:14:00,192 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,194 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,195 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,196 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,197 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,198 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,199 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,200 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,200 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,202 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,202 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,204 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,205 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,207 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,208 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,209 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,210 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,211 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,212 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,213 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:00,313 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:00,315 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:00,322 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:00,324 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:04,669 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:04,671 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:04,672 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:04,674 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:14:04,703 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:14:04,707 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:14:04,708 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:14:04,946 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:04,950 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:20,712 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:20,713 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:20,739 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:20,741 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:20,990 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:20,994 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:24,602 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:24,604 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:24,605 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:24,606 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:14:24,607 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:14:24,608 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:14:24,609 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:14:24,702 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:24,705 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,077 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:26,079 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,080 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 11:14:26,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 11:14:26,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,085 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,087 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,090 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,090 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,091 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,093 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,094 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,099 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,099 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,101 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,102 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,103 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:14:26,205 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:26,208 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:26,213 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:26,215 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:27,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:27,874 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:27,875 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:27,876 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:14:27,877 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:14:27,878 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:14:27,878 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:14:27,972 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:27,974 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:27,980 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:27,983 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:29,557 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:29,558 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:29,560 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-27 11:14:29,585 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:29,586 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:29,587 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:29,590 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:14:29,591 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:14:29,592 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:14:29,593 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:14:29,682 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:29,684 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:29,690 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:29,692 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:32,605 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:32,608 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:32,609 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:32,610 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:14:32,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:14:32,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:14:32,612 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:14:32,742 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:32,745 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:14:32,750 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:14:32,753 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:14:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:43,479 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:15:43,481 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:43,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:43,483 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:15:43,484 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:15:43,485 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:15:43,486 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:15:43,587 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:15:43,590 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,594 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:15:55,596 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,597 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 11:15:55,598 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,599 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,600 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,601 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:15:55,602 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,604 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,605 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,606 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:15:55,609 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,610 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,610 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,611 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,612 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,613 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,613 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,614 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,615 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,616 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,616 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:15:55,617 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,618 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,619 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,620 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:15:55,622 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:15:55,623 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,624 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,625 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,625 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:15:55,626 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:15:55,627 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,628 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,629 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,629 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:15:55,630 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:15:55,631 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:15:55,632 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:15:55,632 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:15:55,633 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:15:55,634 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:15:55,732 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:15:55,734 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:15:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,774 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:03,776 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,785 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-27 11:16:03,811 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:03,813 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,814 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 11:16:03,815 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,816 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,817 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,818 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:03,819 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,820 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,821 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,821 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:03,822 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,823 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,824 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,825 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,826 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,827 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,827 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,829 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,830 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,830 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,831 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:03,832 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,833 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,833 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,834 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:03,835 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,836 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,836 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,837 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:03,838 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,839 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,840 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,840 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:03,842 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:03,843 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,844 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,844 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,845 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:03,846 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:03,847 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:03,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:03,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:03,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:03,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:03,954 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:03,956 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:08,330 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:08,332 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:08,333 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:08], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:16:08,339 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:08,340 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:10,982 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:10,985 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:10,987 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:10,988 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:10], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:10,988 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:10], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:10,989 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:10], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:10,990 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:10], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:11,082 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:11,085 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:18,839 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:18,841 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:18,842 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:18], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:16:18,848 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:18,848 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:20,990 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:20,992 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:20,993 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:20], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:16:20,997 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:20,998 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:22,445 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:22,446 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:22,447 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:22,448 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:22,449 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:22,449 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:22,450 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:22,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:22,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:24,523 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:24,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:24,528 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:24,529 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:24,530 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:24,530 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:24,531 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:24,621 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:24,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,411 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:28,412 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,414 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 11:16:28,415 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,416 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,417 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,417 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:28,420 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,422 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,422 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,423 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:28,424 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,425 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,426 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,426 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,427 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,428 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,428 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,429 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,430 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,431 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,431 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:28,432 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,433 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,434 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,435 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:28,436 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,438 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,438 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,439 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:28,440 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,441 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,441 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,442 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:28,443 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:28,444 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,445 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,445 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,446 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:28,447 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:28,448 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:28,449 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:28,450 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:28,451 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:28,453 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:28,548 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:28,550 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:31,049 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:31,050 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:31,053 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:31,063 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:31,064 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:31,065 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:31,065 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:31,181 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:31,183 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:33,283 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:33,285 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:33,286 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:33,288 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:33,288 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:33,289 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:33,290 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:33,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:33,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:39,865 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:39,867 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:39,868 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:39,869 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:39,870 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:39,870 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:39,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:39,972 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:39,975 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:41,178 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:41,181 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:41,182 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-27 11:16:41,208 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:41,209 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:41,210 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:41,211 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:41,212 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:41,212 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:41,213 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:41,301 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:41,302 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,535 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:50,536 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,538 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 11:16:50,539 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,540 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,540 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,541 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:50,542 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,543 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,544 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,544 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:50,546 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,547 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,547 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,547 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,549 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,550 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,551 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,552 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,553 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,554 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,554 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,555 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:50,556 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,557 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,557 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,558 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:50,559 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:50,560 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,561 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,561 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,561 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:50,562 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,563 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,564 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,564 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:50,565 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,567 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,567 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,568 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:50,569 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:50,570 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:50,571 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:50,572 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:50,572 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:50,573 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:50,692 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:50,694 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,668 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:55,669 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,671 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 11:16:55,672 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:55,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:55,674 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:55,675 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,676 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:55,677 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:55,677 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:55,678 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:55,680 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,682 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:55,682 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:55,683 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:55,684 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:55,686 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,687 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:55,687 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:55,688 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:16:55,689 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,690 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:55,690 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:55,691 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,692 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:16:55,692 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:16:55,693 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:16:55,822 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:55,824 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:55,830 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:55,834 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:59,326 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:59,328 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:59,329 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:16:59,330 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:16:59,331 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:16:59,331 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:16:59,332 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:16:59,467 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:16:59,469 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:16:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:01,305 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:01,307 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:01,308 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:01], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:17:01,313 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:01,313 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:01], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:02,286 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:02,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:02,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:02,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:17:02,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:17:02,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:17:02,291 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:17:02,460 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:02,462 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:08,104 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:08,106 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:08,107 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:08,108 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:17:08,109 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:17:08,109 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:17:08,110 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:17:08,211 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:08,213 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:10,538 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:10,540 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:10,541 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:10], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:17:10,545 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:10,546 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:11,570 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:11,572 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:11,573 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:11,574 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:17:11,575 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:17:11,575 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:17:11,576 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:17:11,671 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:11,672 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:17,894 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:17,896 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:17,897 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:17,898 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:17], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:17:17,899 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:17], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:17:17,899 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:17], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:17:17,899 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:17], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:17:18,020 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:18,022 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,941 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:19,943 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,944 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 11:17:19,945 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,945 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,946 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,947 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:17:19,948 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,949 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,949 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,950 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:17:19,951 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,952 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,953 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,954 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,955 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,956 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,956 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,957 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,958 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,959 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,959 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:17:19,960 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,961 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,961 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,962 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:17:19,963 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,964 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,964 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,965 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:17:19,966 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,967 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,967 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,968 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:17:19,969 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:17:19,971 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,972 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,972 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,973 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:17:19,974 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:17:19,975 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:19,976 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:19,976 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:19,977 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 11:17:19,978 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 11:17:20,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:20,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:24,460 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:24,461 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:24,462 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:24], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 11:17:24,468 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 11:17:24,468 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:24], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 11:17:25,890 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:25,893 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:25,894 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:25,895 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 11:17:25,896 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 11:17:25,896 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 11:17:25,897 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 11:17:25,988 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:25,991 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,376 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:28,378 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,379 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-27 11:17:28,389 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-27 11:17:28,395 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:28,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:28,400 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,401 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:28,402 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:28,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:28,406 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:28,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,411 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:28,412 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:28,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,414 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:28,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:28,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:28,516 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:28,517 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:28,523 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:28,525 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:33,712 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:33,713 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:33,714 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-27 11:17:33,717 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-27 11:17:33,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:33,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:33,725 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:33,727 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:33,728 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:33,739 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:33,741 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:33,743 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:33,747 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:33,748 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:33,749 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:33,752 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:33,753 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:33,754 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:33,757 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:33,759 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:33,898 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:33,900 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:36,860 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:36,861 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:36,862 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-27 11:17:36,865 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-27 11:17:36,869 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:36,870 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:36,872 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:36,873 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:36,874 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:36,877 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:36,878 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:36,879 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:36,881 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:36,882 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:36,883 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:36,886 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:36,887 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:36,889 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:36,892 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:36,893 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:37,015 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:37,016 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,369 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:40,371 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,372 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-27 11:17:40,375 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-27 11:17:40,379 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:40,380 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:40,383 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,385 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:40,386 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:40,390 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,391 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:40,391 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:40,394 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,395 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:40,396 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:40,397 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,398 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:17:40,399 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:40,402 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,403 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 11:17:40,497 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:40,499 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:17:40,507 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:17:40,510 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:17:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:36:38,106 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:36:38,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:36:38,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 11:36:38,113 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-27 11:36:38,114 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:36:38,115 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:36:38,116 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:36:38,117 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 11:36:38,400 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 11:36:38,402 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 11:36:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:26,057 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24288 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:11:26,060 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:11:26,092 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:11:26,093 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:11:26,579 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:11:26,580 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:11:26,591 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:11:26,594 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:11:26,594 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:11:26,598 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:11:26,607 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:11:26,608 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:11:26,618 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:11:26,771 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:11:26,809 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:11:26,810 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:11:26,810 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:11:26,811 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:11:26,811 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:11:26,812 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:11:26,812 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:11:26,812 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:11:26,844 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:11:27,007 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:11:27,009 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:11:27,233 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:11:27,239 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:11:27,239 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:11:27,240 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:11:27,345 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:11:27,345 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1252 ms +2021-01-27 14:11:28,044 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:11:28,112 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:11:29,743 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:11:29,744 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:11:29,744 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:11:30,014 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:11:30,031 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:11:30,042 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:11:30,053 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.395 seconds (JVM running for 5.177) +2021-01-27 14:11:36,269 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:11:36,269 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:11:36,270 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 14:11:36,281 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:36,295 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:11:36,411 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:11:36,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:36,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-27 14:11:36,465 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-27 14:11:36,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:11:36,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:11:36,487 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:36,489 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:11:36,491 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:11:36,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:36,496 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:11:36,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:11:36,503 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:36,504 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:11:36,506 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:11:36,508 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:36,512 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:11:36,514 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:11:36,518 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:36,520 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:11:37,098 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:37,104 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:37,105 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:37,110 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:38,530 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:38,533 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:38,535 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:38], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 14:11:38,540 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:38], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 14:11:38,543 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:38,545 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,125 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,127 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,128 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,130 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,131 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,133 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,133 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,136 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,137 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,138 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,140 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,141 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,143 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,144 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,145 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,146 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,148 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:39,254 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:39,257 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:39,287 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:39,289 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,540 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:40,541 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,543 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 14:11:40,545 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,546 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,548 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,557 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 14:11:40,562 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,564 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,565 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,566 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 14:11:40,568 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,569 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,570 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,571 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,572 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,573 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,574 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,575 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,576 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,578 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,579 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,579 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 14:11:40,581 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,583 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,584 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,585 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 14:11:40,586 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 14:11:40,587 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,588 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,589 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,590 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 14:11:40,591 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,593 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,594 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,594 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 14:11:40,596 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,598 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,599 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,600 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 14:11:40,601 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 14:11:40,602 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:40,603 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:11:40,604 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 14:11:40,606 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 14:11:40,608 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 14:11:40,713 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:40,716 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:45,418 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:45,420 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:45,421 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:45,422 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:11:45,443 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:11:45,447 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:11:45,448 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:11:45,554 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:45,557 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:49,276 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:49,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:49,280 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:11:49,282 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:11:49,283 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:11:49,284 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:11:49,285 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:11:49,407 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:11:49,409 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:11:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:01,716 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:01,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:01,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:01,721 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:12:01,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:12:01,723 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:12:01,724 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:01,818 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:01,822 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:03,310 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:03,312 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:03,314 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-27 14:12:03,397 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:03,400 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:03,402 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:03,403 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:12:03,404 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:12:03,404 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:12:03,405 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:03,497 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:03,499 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:06,775 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:06,777 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:06,779 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:06,780 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:12:06,781 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:12:06,784 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:06,786 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:06,882 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:06,886 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:10,607 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:10,610 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:10,611 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:10,612 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:12:10,613 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:12:10,614 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:12:10,614 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:10,715 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:10,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:13,793 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:13,794 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:13,797 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:13,799 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:12:13,800 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:12:13,801 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:13,803 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:13,804 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:13,806 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:13,807 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:13,807 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:13,906 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:13,908 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:13,917 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:13,919 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:15,656 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:15,658 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:15,663 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:15,664 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:15,766 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:15,770 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:27,740 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:27,742 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:27,743 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:27,744 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:27], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:12:27,745 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:27], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:12:27,882 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:27,885 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:30,157 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:30,159 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:30,163 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:30,164 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:30,262 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:30,265 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:33,158 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:33,160 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:33,162 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:33,163 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:33,256 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:33,259 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:36,375 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:36,377 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:36,378 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:36,379 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:12:36,380 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:12:36,381 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:36,384 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:36,386 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:36,388 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:36,388 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:36,389 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:12:36,487 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:36,490 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:12:36,496 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:12:36,499 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:12:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:13:34,944 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13844 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:13:34,947 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:13:34,976 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:13:34,977 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:13:35,439 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:13:35,440 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:13:35,450 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:13:35,453 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:13:35,453 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:13:35,458 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:13:35,466 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:13:35,467 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:13:35,477 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:13:35,631 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:13:35,674 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:13:35,675 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:13:35,675 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:13:35,676 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:13:35,676 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:13:35,676 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:13:35,676 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:13:35,676 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:13:35,706 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:13:35,852 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:13:35,854 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:13:36,061 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:13:36,067 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:13:36,067 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:13:36,067 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:13:36,177 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:13:36,178 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1201 ms +2021-01-27 14:13:36,795 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:13:36,855 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:13:39,401 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:13:39,401 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:13:39,402 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:13:39,657 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:13:39,671 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:13:39,679 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:13:39,688 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.088 seconds (JVM running for 5.982) +2021-01-27 14:14:16,238 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:14:16,238 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:14:16,239 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-27 14:14:16,252 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:16,265 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:14:16,381 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:14:16,408 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:16,423 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:16,426 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:16], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:14:17,066 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:17], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:17,071 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:17], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:17,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:17], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:17,518 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:17,523 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:18,488 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:18,490 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:18,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:18,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:18], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:18,502 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:18], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:14:18,645 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:18,651 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:19,856 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:19,858 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:19,860 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:19,862 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:19,863 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:14:19,864 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:19,868 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:19,871 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:19,875 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:19,876 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:19,877 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:19], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:20,010 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:20,014 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:20,023 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:20,026 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:20,950 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:20,953 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:20,955 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:20,956 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:20,957 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:20], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:14:21,052 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:21,055 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:22,027 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:22,029 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:22,030 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:22,031 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:22,032 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:14:22,033 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:22,035 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:22,037 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:22,042 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:22,043 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:22,044 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:22,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:22,218 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:22,228 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:22,231 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:23,858 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:23,859 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:23,861 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:23,862 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:23], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:23,863 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:23], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:14:23,980 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:23,983 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:24,811 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:24,813 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:24,814 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:24,816 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:24,817 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:14:24,818 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:24,822 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:24,824 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:24,826 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:24,826 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:24,827 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:24,931 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:24,936 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:24,943 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:24,944 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:28,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:28,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:28,085 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:28,086 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:28], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:28,087 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:28], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:14:28,184 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:28,186 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:29,098 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:29,099 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:29,101 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:29,102 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:29,103 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:14:29,103 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:29,106 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:29,109 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:29,111 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:29,111 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:29,112 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:29,252 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:29,254 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:29,264 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:29,266 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:30,974 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:30,976 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:30,977 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:30,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:30], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:14:30,979 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:30], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:30,980 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:30], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:30,980 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:30], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:31,155 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:31,158 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:31,159 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:31,162 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:33,729 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:33,731 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:33,732 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:33,733 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:33], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:33,735 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:33], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:14:33,834 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:33,837 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:34,954 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:34,958 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:34,959 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:34,961 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:34], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:34,961 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:34], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:14:34,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:34,964 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:34], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:35,060 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:35,063 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:39,699 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:39,701 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:39,702 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:39,703 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:14:39,704 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:39,704 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:39,705 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:39,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:39,803 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:43,026 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:43,028 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:43,029 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:43,030 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:43,031 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:14:43,032 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:43,034 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:43,133 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:43,136 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,186 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:50,187 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,189 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 14:14:50,205 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 14:14:50,208 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,210 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,211 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,212 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,213 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,214 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,215 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,217 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,217 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,219 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,219 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,221 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,221 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,222 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,223 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,224 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,224 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,226 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,226 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,227 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:14:50,330 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:50,332 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:50,354 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:50,357 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:51,857 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:51,859 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:51,860 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:51,861 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:14:51,862 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:51,862 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:51,863 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:51,963 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:51,966 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:56,081 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:56,083 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:56,084 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:56,085 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:14:56,086 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:56,086 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:14:56,087 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:56,187 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:56,189 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:58,827 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:58,828 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:58,830 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:58,831 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:14:58,832 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:14:58,832 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:58,834 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:58,836 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:58,838 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:58,838 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:58,839 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:14:58,939 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:58,942 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:14:58,952 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:14:58,954 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:14:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:01,432 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:01,433 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:01,434 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:01,435 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:01], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:15:01,436 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:01], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:15:01,533 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:01,536 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:01], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:02,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:02,098 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:02,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:02,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:15:02,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:15:02,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:02,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:02,105 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:02,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:02,108 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:02,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:02,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:02,204 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:02,214 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:02,215 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:04,447 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:04,449 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:04,452 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.FollowService.unfollow]. +2021-01-27 14:15:04,537 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:04,538 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:04,539 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:04,540 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:15:04,541 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:15:04,542 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:04,546 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:04,547 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:04,548 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:04,636 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:04,638 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:04,644 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:04,646 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:07,351 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:07,352 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:07,353 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:07,354 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:07], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:15:07,355 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:07], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:15:07,452 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:07,454 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:08,266 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:08,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:08,269 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:08,270 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:15:08,271 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:15:08,272 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:08,273 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:08,275 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:08,275 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:08,370 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:08,372 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:08,377 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:08,379 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:11,837 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:11,839 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:11,840 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:11,841 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:15:11,842 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:15:11,842 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:11,844 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:11,845 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:11,846 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:11,948 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:11,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:11,963 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:11,965 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,083 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:13,085 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,087 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 14:15:13,088 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 14:15:13,091 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,092 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,093 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,094 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,095 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,096 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,097 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,098 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,098 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,099 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,100 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,102 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,103 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,104 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,105 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,106 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,107 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,108 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,108 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,109 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:15:13,203 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:13,205 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:13,211 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:13,213 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:16,389 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:16,390 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:16,391 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:16,393 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:15:16,394 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:15:16,395 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:15:16,395 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:15:16,491 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:16,493 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:47,704 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:47,706 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:15:47,717 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:15:47,718 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:15:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:26,910 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 4748 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:21:26,913 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:21:26,953 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:21:26,953 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:21:27,547 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:21:27,550 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:21:27,562 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:21:27,566 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:21:27,568 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:21:27,572 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:21:27,584 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:21:27,586 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:21:27,597 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:21:27,775 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:21:27,830 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:21:27,832 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:21:27,832 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:21:27,833 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:21:27,834 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:21:27,835 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:21:27,835 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:21:27,835 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:21:27,868 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:21:28,039 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:21:28,041 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:21:28,248 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:21:28,255 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:21:28,256 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:21:28,256 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:21:28,366 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:21:28,367 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1413 ms +2021-01-27 14:21:29,065 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:21:29,131 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:21:31,733 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:21:31,734 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:21:31,734 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:21:31,983 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:21:31,998 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:21:32,006 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:21:32,015 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.473 seconds (JVM running for 6.321) +2021-01-27 14:21:34,634 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:21:34,635 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:21:34,636 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 14:21:34,648 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:21:34,661 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:21:34,785 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:21:34,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:34,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:34,837 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:34], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:21:35,537 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:35], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:21:35,542 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:35], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:21:35,543 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:35], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:21:36,069 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:21:36,072 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:41,340 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:21:41,343 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:41,349 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:41,351 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:21:41,353 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:21:41,358 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:41,361 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:41,364 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:21:41,365 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:21:41,617 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:21:41,620 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:21:41,630 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:21:41,632 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:30,193 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 27252 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:25:30,195 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:25:30,231 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:25:30,231 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:25:30,693 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:25:30,695 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:25:30,704 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:25:30,707 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:25:30,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:25:30,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:25:30,720 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:25:30,721 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:25:30,730 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:25:30,884 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:25:30,928 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:25:30,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:25:30,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:25:30,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:25:30,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:25:30,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:25:30,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:25:30,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:25:30,960 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:25:31,110 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:25:31,112 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:25:31,324 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:25:31,330 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:25:31,331 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:25:31,331 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:25:31,447 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:25:31,448 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1215 ms +2021-01-27 14:25:32,078 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:25:32,138 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:25:34,745 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:25:34,745 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:25:34,745 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:25:35,000 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:25:35,015 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:25:35,024 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:25:35,032 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.173 seconds (JVM running for 6.028) +2021-01-27 14:25:39,078 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:25:39,078 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:25:39,079 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-27 14:25:39,091 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:39,105 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:25:39,223 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:25:39,251 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:39,264 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:39,267 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:39], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:25:39,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:39], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:25:39,904 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:39], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:25:39,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:39], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:40,361 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:40,366 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:43,118 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:43,120 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:43,127 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:43,129 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:25:43,131 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:25:43,135 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:43,138 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:43,142 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:43,143 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:43,264 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:43,268 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:43,279 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:43,282 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:45,218 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:45,220 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:45,224 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:45,225 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:25:45,226 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:25:45,227 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:45,230 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:45,234 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:45,236 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:45,341 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:45,344 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:45,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:45,355 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:46,167 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:46,169 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:46,172 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:46,173 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:46], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:25:46,174 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:46], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:25:46,272 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:46,274 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:47,243 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:47,245 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:47,248 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:47,251 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:25:47,253 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:25:47,253 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:47,256 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:47,258 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:47,259 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:47,390 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:47,394 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:47,396 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:47,400 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:50,771 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:50,772 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:50,774 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:25:50,775 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:25:50,776 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:25:50,777 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:25:50,777 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:25:50,879 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:25:50,883 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:25:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:28:41,343 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 17648 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:28:41,345 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:28:41,378 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:28:41,378 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:28:41,840 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:28:41,841 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:28:41,852 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:28:41,855 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:28:41,855 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:28:41,859 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:28:41,868 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:28:41,869 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:28:41,879 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:28:42,033 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:28:42,076 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:28:42,077 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:28:42,077 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:28:42,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:28:42,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:28:42,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:28:42,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:28:42,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:28:42,108 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:28:42,256 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:28:42,258 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:28:42,467 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:28:42,473 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:28:42,475 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:28:42,475 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:28:42,586 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:28:42,586 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1208 ms +2021-01-27 14:28:43,225 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:28:43,287 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:28:44,848 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:28:44,848 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:28:44,848 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:28:45,089 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:28:45,104 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:28:45,112 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:28:45,121 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.116 seconds (JVM running for 5.004) +2021-01-27 14:28:46,375 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:28:46,376 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:28:46,377 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 14:28:46,389 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:28:46,402 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:28:46,522 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:28:46,550 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:28:46,564 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:28:46,566 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:46], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:28:47,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:47], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:28:47,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:47], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:28:47,207 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:47], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:28:47,581 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:28:47,586 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:29:11,653 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:29:11,655 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:29:11,664 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:29:11,666 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:11], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:29:11,668 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:11], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:29:11,969 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:29:11,973 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:29:48,411 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26644 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:29:48,413 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:29:48,448 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:29:48,448 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:29:48,913 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:29:48,915 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:29:48,925 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:29:48,928 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:29:48,928 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:29:48,933 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:29:48,942 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:29:48,942 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:29:48,953 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:29:49,105 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:29:49,147 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:29:49,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:29:49,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:29:49,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:29:49,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:29:49,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:29:49,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:29:49,150 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:29:49,178 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:29:49,329 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:29:49,331 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:29:49,541 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:29:49,547 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:29:49,547 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:29:49,547 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:29:49,661 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:29:49,661 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1212 ms +2021-01-27 14:29:50,311 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:29:50,371 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:29:52,946 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:29:52,947 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:29:52,947 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:29:53,208 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:29:53,225 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:29:53,234 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:29:53,242 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.168 seconds (JVM running for 5.984) +2021-01-27 14:29:59,426 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:29:59,426 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:29:59,427 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-27 14:29:59,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:29:59,452 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:29:59,569 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:29:59,597 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:29:59,610 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:29:59,613 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:29:59], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:30:00,248 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:00], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:30:00,253 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:00], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:30:00,255 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:00], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:30:00,699 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:30:00,704 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:30:05,081 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:30:05,084 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:30:05,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:30:05,098 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:30:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:00,737 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:32:00,740 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:00,745 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:32:00,748 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:28,124 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:32:28,126 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:28,133 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:28,137 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:28], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:32:28,139 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:28], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:32:28,421 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:32:28,426 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:30,491 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:32:30,493 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:30,496 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:30,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:32:30,498 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:32:30,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:30,502 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:30,505 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:32:30,506 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:32:30,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:32:30,625 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:32:30,637 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:32:30,640 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:32:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:24,359 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 1584 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:33:24,361 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:33:24,395 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:33:24,395 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:33:24,858 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:33:24,859 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:33:24,869 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:33:24,872 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:33:24,872 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:33:24,876 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:33:24,885 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:33:24,885 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:33:24,895 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:33:25,047 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:33:25,089 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:33:25,090 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:33:25,091 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:33:25,091 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:33:25,091 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:33:25,091 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:33:25,092 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:33:25,092 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:33:25,121 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:33:25,268 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:33:25,269 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:33:25,482 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:33:25,488 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:33:25,489 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:33:25,489 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:33:25,602 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:33:25,602 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1206 ms +2021-01-27 14:33:26,236 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:33:26,296 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:33:27,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:33:27,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:33:27,899 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:33:28,136 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:33:28,151 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:33:28,159 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:33:28,168 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.135 seconds (JVM running for 5.022) +2021-01-27 14:33:30,948 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:33:30,949 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:33:30,949 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-27 14:33:30,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:30,974 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:33:31,093 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:33:31,121 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:31,134 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:31,136 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:31], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:33:31,773 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:31], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:33:31,777 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:31], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:33:31,779 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:31], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:33:32,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:32,259 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:33,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:33,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:33,323 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:33,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:33:33,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:33:33,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:33:33,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:33:33,436 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:33,439 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:45,375 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:45,378 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:45,385 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:45,387 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:45], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:33:45,388 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:45], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:33:45,635 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:45,637 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:47,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:47,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:47,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:47,105 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:33:47,106 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:33:47,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:47,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:47,114 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:33:47,115 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:33:47,224 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:47,228 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:47,232 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:47,236 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:53,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:53,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:53,390 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:53,392 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:53,505 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:53,509 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:54,760 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:54,763 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:54,786 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:54,788 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:54,888 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:54,892 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:59,743 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:59,745 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:33:59,847 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:33:59,852 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:33:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,081 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:34:08,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,085 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 14:34:08,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 14:34:08,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,108 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,110 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,112 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,113 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,114 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,116 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,117 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,118 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,119 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,121 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,121 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,123 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,123 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,125 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,125 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,127 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,128 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,129 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:08,248 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:34:08,251 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:08,261 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:34:08,263 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,386 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:34:21,389 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,391 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 14:34:21,393 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 14:34:21,396 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,398 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,398 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,400 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,401 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,402 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,405 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,406 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,407 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,409 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,409 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,410 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,411 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,412 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,413 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,414 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,415 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,416 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,419 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:21,421 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:34:21,525 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:34:21,527 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:24,974 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:34:24,976 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:24,977 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:34:24,978 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:24], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:34:24,979 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:24], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:34:24,979 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:24], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:34:24,980 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:24], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:34:25,085 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:34:25,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:34:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:09,199 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 28520 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:37:09,202 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:37:09,236 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:37:09,236 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:37:09,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:37:09,714 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:37:09,724 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:37:09,727 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:37:09,727 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:37:09,731 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:37:09,741 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:37:09,741 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:37:09,751 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:37:09,905 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:37:09,949 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:37:09,950 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:37:09,950 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:37:09,950 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:37:09,951 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:37:09,951 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:37:09,951 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:37:09,951 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:37:09,980 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:37:10,133 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:37:10,135 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:37:10,340 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:37:10,347 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:37:10,348 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:37:10,348 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:37:10,460 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:37:10,460 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1223 ms +2021-01-27 14:37:11,123 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:37:11,188 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:37:12,789 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:37:12,789 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:37:12,789 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:37:13,031 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:37:13,045 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:37:13,054 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:37:13,062 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.196 seconds (JVM running for 5.051) +2021-01-27 14:37:13,477 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:37:13,478 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:37:13,479 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 14:37:13,493 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:13,507 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:37:13,629 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:37:13,661 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:13,677 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:13,681 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:13], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:37:14,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:14], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:37:14,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:14], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:37:14,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:14], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:37:14,785 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:14,789 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:28,180 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:28,182 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:28,191 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:28,193 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:28], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:37:28,195 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:28], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:37:28,442 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:28,446 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:30,565 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:30,567 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:30,569 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:30,571 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:30], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:37:30,572 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:30], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:37:30,672 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:30,675 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:31,930 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:31,934 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:31,936 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:31,938 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:31], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:37:31,939 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:31], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:37:32,042 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:32,047 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:35,050 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:35,052 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:35,054 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:35,055 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:35], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:37:35,056 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:35], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:37:35,157 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:35,159 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:36,020 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:36,022 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:36,028 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:36,030 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:36,132 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:36,135 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:38,059 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:38,061 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:38,063 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:38,064 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:38,161 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:38,165 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:41,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:41,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:41,106 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:41,108 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:41,208 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:41,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:45,397 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:45,399 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:45,400 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:37:45,401 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:37:45,402 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:37:45,403 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:37:45,404 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:37:45,506 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:37:45,509 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:37:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:09,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:09,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:09,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-27 14:38:09,558 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:09,561 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:09,563 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:09,564 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:38:09,565 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:38:09,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:38:09,567 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:38:09,793 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:09,797 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:12,238 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:12,242 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:12,243 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:12,245 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:38:12,246 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:38:12,264 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:12,267 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:38:12,373 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:12,377 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,174 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:31,175 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,177 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 14:38:31,192 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 14:38:31,195 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,197 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,201 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,202 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,203 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,204 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,205 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,207 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,208 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,209 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,215 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,217 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,218 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,219 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 14:38:31,449 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:31,453 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:31,458 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:31,460 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:34,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:34,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:34,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:34,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:38:34,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:38:34,330 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:38:34,330 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:38:34,428 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:34,430 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,168 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:46,170 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,171 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-27 14:38:46,178 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-27 14:38:46,182 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:38:46,183 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:38:46,187 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,188 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:38:46,189 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:38:46,193 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,194 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:38:46,195 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:38:46,198 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,199 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:38:46,200 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:38:46,201 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,203 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:38:46,204 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:38:46,207 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,209 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 14:38:46,442 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:46,445 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:46,449 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:46,451 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:47,400 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:47,401 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:47,402 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:47,404 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:38:47,404 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:38:47,405 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:38:47,405 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:38:47,505 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:47,508 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:47,517 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:47,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:49,681 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:49,682 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:49,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 14:38:49,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-27 14:38:49,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:49,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:49,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:49,690 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:49,824 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:49,828 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:54,948 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:54,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:54,951 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:38:54,952 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:54], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:38:54,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:54], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:38:54,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:54], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:38:54,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:54], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:38:55,050 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:38:55,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:38:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:40:16,036 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7680 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:40:16,038 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:40:16,069 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:40:16,070 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:40:16,571 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:40:16,572 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:40:16,582 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:40:16,586 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:40:16,586 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:40:16,591 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:40:16,599 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:40:16,600 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:40:16,609 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:40:16,768 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:40:16,815 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:40:16,817 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:40:16,817 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:40:16,817 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:40:16,818 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:40:16,818 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:40:16,818 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:40:16,818 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:40:16,852 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:40:17,012 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:40:17,013 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:40:17,236 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:40:17,242 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:40:17,242 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:40:17,243 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:40:17,368 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:40:17,369 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1298 ms +2021-01-27 14:40:18,020 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:40:18,087 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:40:19,671 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:40:19,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:40:19,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:40:19,922 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:40:19,937 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:40:19,946 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:40:19,955 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.266 seconds (JVM running for 5.046) +2021-01-27 14:40:19,991 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:40:19,991 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:40:19,992 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 14:40:20,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:40:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:40:20,018 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:40:20,137 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:40:20,164 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:40:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:40:20,177 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:40:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:40:20,179 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:40:20], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:40:20,948 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:40:20], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:40:20,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:40:20], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:40:20,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:40:20], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:40:21,444 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:40:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:40:21,450 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:40:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:40:25,502 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:40:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:40:25,505 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:40:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:40:25,532 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:40:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:40:25,534 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:40:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:41:58,442 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:41:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:41:58,444 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:41:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:41:58,457 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:41:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:41:58,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:41:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:43:23,039 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:43:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:43:23,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:43:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:43:23,055 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:43:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:43:23,059 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:43:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:40,100 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25876 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 14:44:40,103 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 14:44:40,138 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 14:44:40,139 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 14:44:40,613 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:44:40,615 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:44:40,625 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 14:44:40,628 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:44:40,629 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 14:44:40,633 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 14:44:40,642 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 14:44:40,643 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 14:44:40,654 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 14:44:40,824 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 14:44:40,869 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 14:44:40,870 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:44:40,870 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:44:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:44:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 14:44:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 14:44:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:44:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 14:44:40,901 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 14:44:41,055 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 14:44:41,057 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 14:44:41,265 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 14:44:41,270 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 14:44:41,271 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 14:44:41,271 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 14:44:41,377 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 14:44:41,378 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1238 ms +2021-01-27 14:44:42,017 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 14:44:42,084 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 14:44:43,677 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 14:44:43,677 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 14:44:43,677 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 14:44:43,926 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 14:44:43,941 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 14:44:43,949 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 14:44:43,958 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.245 seconds (JVM running for 5.094) +2021-01-27 14:44:43,993 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 14:44:43,993 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 14:44:43,994 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 14:44:44,006 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:44:44,019 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 14:44:44,145 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 14:44:44,172 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:44,184 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:44,187 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:44], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:44:44,926 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:44], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:44:44,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:44], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:44:44,933 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:44], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:44:45,417 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:44:45,423 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:54,029 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:44:54,032 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:54,040 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:54,042 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:44:54,043 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 14:44:54,046 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:54,051 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:54,054 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:54,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:44:54,058 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:44:54,059 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:44:54,185 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:44:54,190 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:54,196 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:44:54,198 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:57,041 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:44:57,046 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:57,048 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:44:57,049 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:57], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:44:57,050 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:57], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 14:44:57,152 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:44:57,155 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:44:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:45:05,840 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:45:05,842 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:45:05,843 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:45:05,844 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 14:45:05,845 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 14:45:05,846 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 14:45:05,847 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 14:45:05,951 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:45:05,953 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:45:05,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:45:05,963 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:45:11,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:45:11,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 14:45:11,265 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 14:45:11,267 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-27 14:45:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:28:55,366 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22556 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 15:28:55,371 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 15:28:55,401 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 15:28:55,401 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 15:28:55,901 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:28:55,901 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 15:28:55,916 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 15:28:55,920 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:28:55,920 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 15:28:55,921 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 15:28:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:28:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 15:28:55,941 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 15:28:56,096 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:28:56,130 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:28:56,161 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 15:28:56,321 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 15:28:56,326 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 15:28:56,545 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 15:28:56,552 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 15:28:56,552 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 15:28:56,552 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 15:28:56,651 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 15:28:56,651 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1246 ms +2021-01-27 15:28:57,291 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 15:28:57,351 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 15:28:58,956 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 15:28:58,956 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 15:28:58,956 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 15:28:59,191 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 15:28:59,206 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 15:28:59,211 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 15:28:59,221 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.235 seconds (JVM running for 5.01) +2021-01-27 15:29:06,266 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 15:29:06,266 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 15:29:06,268 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-27 15:29:06,280 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:06,296 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 15:29:06,422 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 15:29:06,449 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:06,837 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:06,838 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:06,842 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:06,845 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:10,143 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:10,145 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:10,152 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:10], 访问了[com.greate.community.service.UserService.logout]. +2021-01-27 15:29:10,179 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:10,342 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:14,417 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:14,448 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.login]. +2021-01-27 15:29:14,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:14,475 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 15:29:14,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 15:29:14,504 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,506 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,510 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,512 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,513 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,515 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,516 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,517 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,518 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,520 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,521 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,523 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,524 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,526 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,527 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,528 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,531 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,532 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:14,692 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:14,696 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:14,704 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:14,707 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:17,214 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,215 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 15:29:17,217 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 15:29:17,221 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,222 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,223 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,225 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,227 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,228 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,229 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,230 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,231 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,232 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,233 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,234 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,235 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,237 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,238 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,239 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,240 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,242 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,244 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,246 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:17,339 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:17,343 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:17,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:17,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:24,575 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:24,576 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:24,578 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:24,579 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:24,581 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:24,585 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:24,586 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:24,689 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:24,692 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,690 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:27,694 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,699 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 15:29:27,700 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,702 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,703 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,704 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:29:27,710 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,711 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,712 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,713 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:29:27,714 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,715 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,716 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,716 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,718 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,719 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,719 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,720 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,721 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,722 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,723 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,723 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:29:27,725 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,726 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,727 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,728 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:29:27,729 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:29:27,730 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,731 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,732 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,732 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:29:27,734 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:29:27,735 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,736 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,737 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,737 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:29:27,739 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:29:27,740 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:27,741 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:27,741 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:27,742 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:29:27,743 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:29:27,851 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:27,854 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:28,747 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:28,750 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:28,752 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:28], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 15:29:28,782 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:29:28,782 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:29:29,550 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:29,551 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:29,553 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:29,554 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:29,555 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:29,556 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:29,556 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:29,734 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:29,737 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:33,286 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:33,288 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:33,289 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:33,290 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:33,291 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:33,291 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:33,292 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:33,392 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:33,394 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:34,519 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:34,520 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:34,522 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.FollowService.unfollow]. +2021-01-27 15:29:34,593 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:34,595 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:34,597 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:34,599 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:34,600 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:34,600 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:34,601 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:34,690 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:34,692 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:35,929 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:35,931 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:35,933 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-27 15:29:35,957 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:35,958 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:35,960 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:35,961 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:35,962 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:35,962 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:35,963 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:35], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:36,051 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:36,053 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:38,906 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:38,908 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:38,909 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.FollowService.unfollow]. +2021-01-27 15:29:38,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:38,933 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:38,934 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:38,935 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:38,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:38,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:38,937 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:38], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:39,023 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:39,025 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:40,677 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:40,680 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:40,682 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-27 15:29:40,700 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:40,702 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:40,704 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:40,706 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:40,706 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:40,707 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:40,707 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:40,796 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:40,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:41,762 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:41,764 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:41,765 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.FollowService.unfollow]. +2021-01-27 15:29:41,788 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:41,789 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:41,790 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:41,791 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:41,792 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:41,794 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:41,795 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:41,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:41,885 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:42,759 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:42,763 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:42,765 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-27 15:29:42,789 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:42,790 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:42,791 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:42,792 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:42,793 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:42,793 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:42,794 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:42,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:42,882 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:46,214 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:46,216 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:46,218 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:46,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:46,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 15:29:46,222 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:46,224 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:46,322 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:46,324 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:47,568 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:47,569 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:47,570 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:47,571 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:29:47,572 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:47,572 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:47,573 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:47,760 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:47,762 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:49,303 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:49,304 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:49,305 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:49,306 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:29:49,307 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.FollowService.findFollowees]. +2021-01-27 15:29:49,308 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:49,310 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:49,311 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:49,313 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:49,313 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:49,314 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:49,412 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:49,415 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:49,423 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:49,426 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:56,378 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:56,380 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:56,381 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:56,382 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:29:56,383 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.FollowService.findFollowers]. +2021-01-27 15:29:56,383 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:29:56,385 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:29:56,483 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:29:56,485 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:29:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:40:45,108 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 4208 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 15:40:45,110 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 15:40:45,148 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 15:40:45,149 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 15:40:45,628 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:40:45,629 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 15:40:45,640 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 15:40:45,643 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:40:45,643 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 15:40:45,647 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 15:40:45,655 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:40:45,657 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 15:40:45,667 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 15:40:45,819 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 15:40:45,860 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 15:40:45,861 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:40:45,861 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:40:45,861 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:40:45,862 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 15:40:45,862 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:40:45,862 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:40:45,862 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:40:45,893 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 15:40:46,053 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 15:40:46,055 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 15:40:46,279 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 15:40:46,285 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 15:40:46,285 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 15:40:46,285 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 15:40:46,396 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 15:40:46,397 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1247 ms +2021-01-27 15:40:47,061 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 15:40:47,127 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 15:40:48,753 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 15:40:48,753 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 15:40:48,753 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 15:40:48,998 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 15:40:49,013 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 15:40:49,022 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 15:40:49,030 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.262 seconds (JVM running for 5.032) +2021-01-27 15:41:40,698 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 15:41:40,699 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 15:41:40,700 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 15:41:40,712 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:41,247 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:41,256 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 15:41:41,498 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 15:41:41,526 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:41], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:41:41,550 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:41], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:41:41,554 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:41], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:41:43,011 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:43,014 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 15:41:43,032 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 15:41:43,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,041 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,043 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,044 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,047 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,049 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,050 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,052 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,053 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,055 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,056 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,058 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,060 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,061 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,063 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:43,066 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:43,178 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:43,188 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:44,217 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:44,327 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:49,760 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:49,768 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.login]. +2021-01-27 15:41:49,824 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:49,836 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,838 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 15:41:49,842 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 15:41:49,847 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,849 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,850 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,851 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,852 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,855 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,856 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,857 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,858 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,860 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,861 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,862 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,863 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,864 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,865 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,866 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,867 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,869 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,869 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,871 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:49,972 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:49,973 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:49,986 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:49,987 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,306 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:51,307 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,313 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 15:41:51,315 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,316 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,319 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:41:51,325 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,327 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,328 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,328 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:41:51,330 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,332 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,332 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,333 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,334 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,334 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,335 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,336 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,337 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,338 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,338 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:41:51,340 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,341 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,342 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,343 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:41:51,345 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:41:51,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,351 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:41:51,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:41:51,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,354 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,355 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,355 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:41:51,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:41:51,358 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:51,359 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:51,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:51,361 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:41:51,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:41:51,472 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:51,474 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:55,725 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:55,726 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:55,728 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:55], 访问了[com.greate.community.service.LikeService.like]. +2021-01-27 15:41:55,756 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:41:55,756 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:41:56,992 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:56,994 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:56,996 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:56,998 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:56], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-27 15:41:56,999 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:56], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-27 15:41:56,999 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:56], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-27 15:41:57,000 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:57], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-27 15:41:57,098 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:57,100 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,564 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:59,565 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,567 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-27 15:41:59,575 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-27 15:41:59,580 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 15:41:59,581 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 15:41:59,585 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,587 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 15:41:59,588 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 15:41:59,591 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,592 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 15:41:59,593 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 15:41:59,596 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,598 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 15:41:59,599 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 15:41:59,600 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,602 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-27 15:41:59,603 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 15:41:59,606 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-27 15:41:59,705 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:59,706 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:41:59,713 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:41:59,714 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:41:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,439 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:42:00,440 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,442 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 15:42:00,443 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 15:42:00,445 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,446 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,447 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,448 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,448 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,450 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,451 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,453 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,454 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,455 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,456 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,457 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,457 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,458 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,459 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,460 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,461 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,462 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,463 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,464 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:42:00,598 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:42:00,599 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:42:00,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:42:00,609 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:42:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:27,372 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 6464 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-27 15:55:27,375 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 15:55:27,418 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-27 15:55:27,419 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-27 15:55:27,947 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:55:27,949 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 15:55:27,960 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 15:55:27,963 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:55:27,964 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 15:55:27,968 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 15:55:27,977 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 15:55:27,978 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 15:55:27,988 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-27 15:55:28,156 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 15:55:28,205 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 15:55:28,206 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:55:28,207 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:55:28,207 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:55:28,207 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 15:55:28,208 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 15:55:28,208 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:55:28,208 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 15:55:28,250 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 15:55:28,443 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 15:55:28,446 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 15:55:28,693 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-27 15:55:28,699 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-27 15:55:28,699 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-27 15:55:28,700 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-27 15:55:28,808 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-27 15:55:28,808 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1388 ms +2021-01-27 15:55:29,478 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 15:55:29,556 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 15:55:31,152 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 15:55:31,153 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 15:55:31,153 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 15:55:31,401 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-27 15:55:31,417 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-27 15:55:31,425 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-27 15:55:31,434 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.434 seconds (JVM running for 5.275) +2021-01-27 15:55:36,110 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-27 15:55:36,111 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-27 15:55:36,112 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-27 15:55:36,124 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:36,704 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:36,716 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-27 15:55:36,945 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-27 15:55:37,000 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 15:55:37,015 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 15:55:37,021 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,030 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,031 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,032 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,036 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,037 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,038 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,040 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,041 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,042 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,043 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,046 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,047 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,048 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,049 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,050 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,050 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,053 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:37,504 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:37,505 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:37,511 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:37,513 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,432 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:38,433 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,434 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-27 15:55:38,437 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-27 15:55:38,442 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,444 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,447 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,449 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,450 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,451 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,452 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,453 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,454 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,455 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,455 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,456 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,457 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,458 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,458 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,459 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,460 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,460 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,461 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,462 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:38,561 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:38,564 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:38,570 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:38,572 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:38], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,536 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:39,537 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,541 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-27 15:55:39,543 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,545 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,546 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,548 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:55:39,553 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,555 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,556 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,557 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:55:39,559 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,559 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,560 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,562 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,564 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,564 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,565 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,566 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,567 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,567 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,568 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:55:39,569 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,570 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,571 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,571 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:55:39,573 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,574 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,574 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,575 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:55:39,578 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,581 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,581 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,582 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:55:39,583 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:55:39,585 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,587 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,588 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,588 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:55:39,590 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:55:39,591 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 15:55:39,592 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-27 15:55:39,592 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-27 15:55:39,593 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-27 15:55:39,595 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-27 15:55:39,710 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-27 15:55:39,711 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-27 15:55:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-27 22:07:18,863 INFO [main] c.g.c.KafkaTests [StartupInfoLogger.java:55] Starting KafkaTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 14028 (started by 19124 in E:\GreateCommunity) +2021-01-27 22:07:18,868 INFO [main] c.g.c.KafkaTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 22:07:20,437 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 22:07:20,442 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 22:07:20,477 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 26 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 22:07:20,486 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 22:07:20,487 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 22:07:20,500 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 22:07:20,524 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 22:07:20,526 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 22:07:20,549 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Redis repository interfaces. +2021-01-27 22:07:20,948 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 22:07:21,027 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 22:07:21,029 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:07:21,030 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:07:21,030 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:07:21,030 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 22:07:21,031 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 22:07:21,031 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:07:21,099 INFO [main] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 22:07:21,615 INFO [main] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 22:07:21,618 INFO [main] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 22:07:23,765 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 22:07:23,949 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 22:07:26,632 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 22:07:26,632 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 22:07:26,632 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 22:07:27,205 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-27 22:07:27,367 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-27 22:07:27,367 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-27 22:07:27,368 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611756447364 +2021-01-27 22:07:27,371 INFO [main] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): test +2021-01-27 22:07:27,379 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-27 22:07:27,403 INFO [main] c.g.c.KafkaTests [StartupInfoLogger.java:61] Started KafkaTests in 9.448 seconds (JVM running for 11.513) +2021-01-27 22:07:27,701 INFO [main] o.a.k.c.p.ProducerConfig [AbstractConfig.java:354] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.dns.lookup = use_all_dns_ips + client.id = producer-1 + compression.type = none + connections.max.idle.ms = 540000 + delivery.timeout.ms = 120000 + enable.idempotence = false + interceptor.classes = [] + internal.auto.downgrade.txn.commit = true + key.serializer = class org.apache.kafka.common.serialization.StringSerializer + linger.ms = 0 + max.block.ms = 60000 + max.in.flight.requests.per.connection = 5 + max.request.size = 1048576 + metadata.max.age.ms = 300000 + metadata.max.idle.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner + receive.buffer.bytes = 32768 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retries = 2147483647 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + transaction.timeout.ms = 60000 + transactional.id = null + value.serializer = class org.apache.kafka.common.serialization.StringSerializer + +2021-01-27 22:07:27,736 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-27 22:07:27,737 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-27 22:07:27,737 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611756447736 +2021-01-27 22:07:27,886 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:279] [Producer clientId=producer-1] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-27 22:07:27,887 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-27 22:07:27,888 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-27 22:07:27,894 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-27 22:07:27,909 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-27 22:07:27,910 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-27 22:07:27,932 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 1: {consumer-test-consumer-group-1-db6e0a33-63cf-4cc9-8d58-ece84f004b88=Assignment(partitions=[test-0])} +2021-01-27 22:07:27,942 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 1 +2021-01-27 22:07:27,944 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[test-0]) +2021-01-27 22:07:27,949 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: test-0 +2021-01-27 22:07:27,959 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:1349] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Found no committed offset for partition test-0 +2021-01-27 22:07:27,972 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.SubscriptionState [SubscriptionState.java:397] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Resetting offset for partition test-0 to offset 4. +2021-01-27 22:07:27,973 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [test-0] +2021-01-27 22:07:37,939 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:307] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Revoke previously assigned partitions test-0 +2021-01-27 22:07:37,940 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions revoked: [test-0] +2021-01-27 22:07:37,940 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:1005] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Member consumer-test-consumer-group-1-db6e0a33-63cf-4cc9-8d58-ece84f004b88 sending LeaveGroup request to coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) due to the consumer unsubscribed from all topics +2021-01-27 22:07:37,941 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:1074] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Unsubscribed all topics or patterns and assigned partitions +2021-01-27 22:07:37,941 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService +2021-01-27 22:07:37,960 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [LogAccessor.java:292] test-consumer-group: Consumer stopped +2021-01-27 22:07:37,965 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-27 22:07:37,985 INFO [SpringContextShutdownHook] o.a.k.c.p.KafkaProducer [KafkaProducer.java:1189] [Producer clientId=producer-1] Closing the Kafka producer with timeoutMillis = 30000 ms. +2021-01-27 22:09:27,651 INFO [main] c.g.c.KafkaTests [StartupInfoLogger.java:55] Starting KafkaTests using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 1656 (started by 19124 in E:\GreateCommunity) +2021-01-27 22:09:27,654 INFO [main] c.g.c.KafkaTests [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-27 22:09:28,174 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 22:09:28,177 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-27 22:09:28,191 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Elasticsearch repository interfaces. +2021-01-27 22:09:28,195 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 22:09:28,196 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-27 22:09:28,201 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-27 22:09:28,212 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-27 22:09:28,213 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-27 22:09:28,225 INFO [main] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-27 22:09:28,485 INFO [main] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-27 22:09:28,540 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-27 22:09:28,542 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource test [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:09:28,542 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Inlined Test Properties [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:09:28,542 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:09:28,542 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-27 22:09:28,543 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-27 22:09:28,543 INFO [main] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-27 22:09:28,588 INFO [main] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-27 22:09:28,917 INFO [main] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-27 22:09:28,920 INFO [main] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-27 22:09:30,115 INFO [main] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-27 22:09:30,241 INFO [main] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-27 22:09:33,460 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-27 22:09:33,460 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-27 22:09:33,460 INFO [main] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-27 22:09:33,920 INFO [main] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-27 22:09:34,010 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-27 22:09:34,010 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-27 22:09:34,010 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611756574009 +2021-01-27 22:09:34,013 INFO [main] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): test +2021-01-27 22:09:34,018 INFO [main] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-27 22:09:34,031 INFO [main] c.g.c.KafkaTests [StartupInfoLogger.java:61] Started KafkaTests in 6.717 seconds (JVM running for 7.579) +2021-01-27 22:09:34,185 INFO [main] o.a.k.c.p.ProducerConfig [AbstractConfig.java:354] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.dns.lookup = use_all_dns_ips + client.id = producer-1 + compression.type = none + connections.max.idle.ms = 540000 + delivery.timeout.ms = 120000 + enable.idempotence = false + interceptor.classes = [] + internal.auto.downgrade.txn.commit = true + key.serializer = class org.apache.kafka.common.serialization.StringSerializer + linger.ms = 0 + max.block.ms = 60000 + max.in.flight.requests.per.connection = 5 + max.request.size = 1048576 + metadata.max.age.ms = 300000 + metadata.max.idle.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner + receive.buffer.bytes = 32768 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retries = 2147483647 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + transaction.timeout.ms = 60000 + transactional.id = null + value.serializer = class org.apache.kafka.common.serialization.StringSerializer + +2021-01-27 22:09:34,203 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-27 22:09:34,204 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-27 22:09:34,204 INFO [main] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611756574203 +2021-01-27 22:09:34,301 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:279] [Producer clientId=producer-1] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-27 22:09:34,301 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-27 22:09:34,303 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-27 22:09:34,306 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-27 22:09:34,315 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-27 22:09:34,316 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-27 22:09:34,324 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 3: {consumer-test-consumer-group-1-3ff335b9-659a-45dd-9921-dc0a06dfb290=Assignment(partitions=[test-0])} +2021-01-27 22:09:34,329 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 3 +2021-01-27 22:09:34,330 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[test-0]) +2021-01-27 22:09:34,334 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: test-0 +2021-01-27 22:09:34,341 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition test-0 to the committed offset FetchPosition{offset=4, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-27 22:09:34,342 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [test-0] +2021-01-27 22:09:44,334 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:307] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Revoke previously assigned partitions test-0 +2021-01-27 22:09:44,335 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions revoked: [test-0] +2021-01-27 22:09:44,335 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:1005] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Member consumer-test-consumer-group-1-3ff335b9-659a-45dd-9921-dc0a06dfb290 sending LeaveGroup request to coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) due to the consumer unsubscribed from all topics +2021-01-27 22:09:44,336 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:1074] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Unsubscribed all topics or patterns and assigned partitions +2021-01-27 22:09:44,336 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService +2021-01-27 22:09:44,346 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer$ListenerConsumer [LogAccessor.java:292] test-consumer-group: Consumer stopped +2021-01-27 22:09:44,352 INFO [SpringContextShutdownHook] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:218] Shutting down ExecutorService 'applicationTaskExecutor' +2021-01-27 22:09:44,370 INFO [SpringContextShutdownHook] o.a.k.c.p.KafkaProducer [KafkaProducer.java:1189] [Producer clientId=producer-1] Closing the Kafka producer with timeoutMillis = 30000 ms. diff --git a/log/community/log_error.log b/log/community/log_error.log index 4a9ae660..2eaeb95d 100644 --- a/log/community/log_error.log +++ b/log/community/log_error.log @@ -1,630 +1,2482 @@ -2021-01-25 11:06:05,169 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "abc" -2021-01-25 11:06:05,174 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) -2021-01-25 11:06:05,174 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) -2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.valueOf(Integer.java:766) -2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterList(MessageController.java:37) -2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-25 11:06:05,175 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) -2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) -2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 11:06:05,176 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 11:06:05,177 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:06:05,178 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:06:05,179 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 11:06:05,180 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 11:06:05,181 ERROR [http-nio-8080-exec-9] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 11:13:09,251 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "asd" -2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) -2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) -2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:615) -2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterTarget(MessageController.java:120) -2021-01-25 11:13:09,252 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterDetail(MessageController.java:101) -2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) -2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) -2021-01-25 11:13:09,253 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -2021-01-25 11:13:09,254 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:13:09,255 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:13:09,256 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 11:13:09,257 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 11:13:09,258 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 11:13:09,259 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 11:13:09,259 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:For input string: "asd" -2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) -2021-01-25 11:14:42,484 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:580) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Integer.parseInt(Integer.java:615) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterTarget(MessageController.java:120) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.MessageController.getLetterDetail(MessageController.java:101) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) -2021-01-25 11:14:42,485 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) -2021-01-25 11:14:42,486 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:14:42,487 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 11:14:42,488 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 11:14:42,489 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 11:14:42,490 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 -2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) -2021-01-25 15:15:57,721 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) -2021-01-25 15:15:57,722 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:15:57,723 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) -2021-01-25 15:15:57,724 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 15:15:57,725 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:15:57,726 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 15:15:57,727 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 15:15:57,728 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 15:15:57,729 ERROR [http-nio-8080-exec-6] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 15:16:15,011 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 -2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) -2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) -2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) -2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) -2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) -2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) -2021-01-25 15:16:15,012 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() -2021-01-25 15:16:15,013 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:15,014 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 15:16:15,015 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 15:16:15,016 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:15,017 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 15:16:15,018 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 15:16:15,019 ERROR [http-nio-8080-exec-4] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 -2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) -2021-01-25 15:16:18,412 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) -2021-01-25 15:16:18,413 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:18,414 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-25 15:16:18,415 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -2021-01-25 15:16:18,416 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:18,417 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 15:16:18,418 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 15:16:18,419 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 15:16:18,420 ERROR [http-nio-8080-exec-3] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 15:16:20,875 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379 -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.translateException(LettuceConnectionFactory.java:1553) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$ExceptionTranslatingConnectionProvider.getConnection(LettuceConnectionFactory.java:1461) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getNativeConnection(LettuceConnectionFactory.java:1247) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory$SharedConnection.getConnection(LettuceConnectionFactory.java:1230) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getSharedConnection(LettuceConnectionFactory.java:979) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.connection.lettuce.LettuceConnectionFactory.getConnection(LettuceConnectionFactory.java:359) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.fetchConnection(RedisConnectionUtils.java:193) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.doGetConnection(RedisConnectionUtils.java:144) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisConnectionUtils.getConnection(RedisConnectionUtils.java:105) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:209) -2021-01-25 15:16:20,876 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:189) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:96) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.data.redis.core.DefaultSetOperations.isMember(DefaultSetOperations.java:203) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService.like(LikeService.java:26) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$FastClassBySpringCGLIB$$3b3a3017.invoke() -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:218) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:779) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) -2021-01-25 15:16:20,877 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:186) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:750) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:692) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.service.LikeService$$EnhancerBySpringCGLIB$$2539da6c.like() -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] com.greate.community.controller.LikeController.like(LikeController.java:32) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) -2021-01-25 15:16:20,878 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.reflect.Method.invoke(Method.java:498) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:197) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:141) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) -2021-01-25 15:16:20,879 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:652) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:20,880 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 15:16:20,881 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 15:16:20,882 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 15:16:20,883 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 15:16:20,883 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "profile.html" -2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) -2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) -2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) -2021-01-25 17:20:12,046 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) -2021-01-25 17:20:12,047 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:20:12,048 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 17:20:12,049 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 17:20:12,050 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 17:20:12,051 ERROR [http-nio-8080-exec-7] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 17:21:56,209 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id" -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 17:21:56,210 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:21:56,211 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:21:56,212 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 17:21:56,213 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 17:21:56,214 ERROR [http-nio-8080-exec-1] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) -2021-01-25 17:22:05,014 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:25] 服务器发生异常:Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id" -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:133) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:121) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:170) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:137) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:106) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:894) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1060) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) -2021-01-25 17:22:05,015 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:626) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] javax.servlet.http.HttpServlet.service(HttpServlet.java:733) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:22:05,016 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) -2021-01-25 17:22:05,017 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) -2021-01-25 17:22:05,018 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) -2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) -2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) -2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) -2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) -2021-01-25 17:22:05,019 ERROR [http-nio-8080-exec-10] c.g.c.c.a.ExceptionAdvice [ExceptionAdvice.java:27] java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:08,657 ERROR [http-nio-8080-exec-1] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-1] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:08,661 ERROR [http-nio-8080-exec-1] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:12,150 ERROR [http-nio-8080-exec-1] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-1] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:12,151 ERROR [http-nio-8080-exec-1] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:19,015 ERROR [http-nio-8080-exec-4] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-4] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:19,016 ERROR [http-nio-8080-exec-4] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:19,025 ERROR [http-nio-8080-exec-4] o.s.b.a.w.s.e.ErrorMvcAutoConfiguration$StaticView [ErrorMvcAutoConfiguration.java:210] Cannot render error page for request [/echo/discuss/detail/234] and exception [An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] as the response has already been committed. As a result, the response may have the wrong status code. +2021-01-28 16:27:25,686 ERROR [http-nio-8080-exec-3] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-3] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:25,687 ERROR [http-nio-8080-exec-3] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:28,474 ERROR [http-nio-8080-exec-9] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-9] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:28,475 ERROR [http-nio-8080-exec-9] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:33,902 ERROR [http-nio-8080-exec-9] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-9] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:33,902 ERROR [http-nio-8080-exec-9] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:35,655 ERROR [http-nio-8080-exec-10] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-10] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:35,655 ERROR [http-nio-8080-exec-10] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:35,662 ERROR [http-nio-8080-exec-10] o.s.b.a.w.s.e.ErrorMvcAutoConfiguration$StaticView [ErrorMvcAutoConfiguration.java:210] Cannot render error page for request [/echo/discuss/detail/234] and exception [An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] as the response has already been committed. As a result, the response may have the wrong status code. +2021-01-28 16:27:39,373 ERROR [http-nio-8080-exec-2] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-2] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:39,374 ERROR [http-nio-8080-exec-2] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:27:55,959 ERROR [http-nio-8080-exec-8] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-8] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:27:55,960 ERROR [http-nio-8080-exec-8] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:28:14,581 ERROR [http-nio-8080-exec-2] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-2] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:28:14,581 ERROR [http-nio-8080-exec-2] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:28:18,926 ERROR [http-nio-8080-exec-2] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-2] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:28:18,927 ERROR [http-nio-8080-exec-2] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:28:18,934 ERROR [http-nio-8080-exec-2] o.s.b.a.w.s.e.ErrorMvcAutoConfiguration$StaticView [ErrorMvcAutoConfiguration.java:210] Cannot render error page for request [/echo/discuss/detail/234] and exception [An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] as the response has already been committed. As a result, the response may have the wrong status code. +2021-01-28 16:28:43,952 ERROR [http-nio-8080-exec-9] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-9] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:28:43,953 ERROR [http-nio-8080-exec-9] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:28:43,959 ERROR [http-nio-8080-exec-9] o.s.b.a.w.s.e.ErrorMvcAutoConfiguration$StaticView [ErrorMvcAutoConfiguration.java:210] Cannot render error page for request [/echo/discuss/detail/234] and exception [An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] as the response has already been committed. As a result, the response may have the wrong status code. +2021-01-28 16:28:47,632 ERROR [http-nio-8080-exec-10] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-10] Exception processing template "/site/discuss-detail": An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Exception evaluating SpringEL expression: "rvo.user.id" (template: "/site/discuss-detail" - line 141, col 49) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:292) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +Caused by: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + ... 75 common frames omitted +2021-01-28 16:28:47,633 ERROR [http-nio-8080-exec-10] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] with root cause +org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'user' cannot be found on null + at org.springframework.expression.spel.ast.PropertyOrFieldReference.readProperty(PropertyOrFieldReference.java:213) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:104) + at org.springframework.expression.spel.ast.PropertyOrFieldReference.getValueInternal(PropertyOrFieldReference.java:91) + at org.springframework.expression.spel.ast.CompoundExpression.getValueRef(CompoundExpression.java:61) + at org.springframework.expression.spel.ast.CompoundExpression.getValueInternal(CompoundExpression.java:91) + at org.springframework.expression.spel.ast.SpelNodeImpl.getValue(SpelNodeImpl.java:112) + at org.springframework.expression.spel.standard.SpelExpression.getValue(SpelExpression.java:337) + at org.thymeleaf.spring5.expression.SPELVariableExpressionEvaluator.evaluate(SPELVariableExpressionEvaluator.java:265) + at org.thymeleaf.standard.expression.VariableExpression.executeVariableExpression(VariableExpression.java:166) + at org.thymeleaf.standard.expression.SimpleExpression.executeSimple(SimpleExpression.java:66) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:109) + at org.thymeleaf.standard.expression.Expression.execute(Expression.java:138) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:144) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleStandaloneElement(ProcessorTemplateHandler.java:918) + at org.thymeleaf.engine.StandaloneElementTag.beHandled(StandaloneElementTag.java:228) + at org.thymeleaf.engine.Model.process(Model.java:282) + at org.thymeleaf.engine.Model.process(Model.java:290) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.processIterationModel(IteratedGatheringModelProcessable.java:367) + at org.thymeleaf.engine.IteratedGatheringModelProcessable.process(IteratedGatheringModelProcessable.java:221) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleCloseElement(ProcessorTemplateHandler.java:1640) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleCloseElementEnd(TemplateHandlerAdapterMarkupHandler.java:388) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:322) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleCloseElementEnd(OutputExpressionInlinePreProcessorHandler.java:220) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleCloseElementEnd(InlinedOutputExpressionMarkupHandler.java:164) + at org.attoparser.HtmlElement.handleCloseElementEnd(HtmlElement.java:169) + at org.attoparser.HtmlMarkupHandler.handleCloseElementEnd(HtmlMarkupHandler.java:412) + at org.attoparser.MarkupEventProcessorHandler.handleCloseElementEnd(MarkupEventProcessorHandler.java:473) + at org.attoparser.ParsingElementMarkupUtil.parseCloseElement(ParsingElementMarkupUtil.java:201) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:725) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +2021-01-28 16:28:47,643 ERROR [http-nio-8080-exec-10] o.s.b.a.w.s.e.ErrorMvcAutoConfiguration$StaticView [ErrorMvcAutoConfiguration.java:210] Cannot render error page for request [/echo/discuss/detail/234] and exception [An error happened during template parsing (template: "class path resource [templates//site/discuss-detail.html]")] as the response has already been committed. As a result, the response may have the wrong status code. +2021-01-28 17:54:29,285 ERROR [http-nio-8080-exec-5] o.t.TemplateEngine [TemplateEngine.java:1136] [THYMELEAF][http-nio-8080-exec-5] Exception processing template "/site/notice": An error happened during template parsing (template: "class path resource [templates//site/notice.html]") +org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/notice.html]") + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:241) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +Caused by: org.attoparser.ParseException: Could not parse as expression: "#" (template: "/site/notice" - line 51, col 12) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:393) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + ... 48 common frames omitted +Caused by: org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "#" (template: "/site/notice" - line 51, col 12) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) + at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) + at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleOpenElementEnd(TemplateHandlerAdapterMarkupHandler.java:304) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleOpenElementEnd(InlinedOutputExpressionMarkupHandler.java:278) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleOpenElementEnd(OutputExpressionInlinePreProcessorHandler.java:186) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleOpenElementEnd(InlinedOutputExpressionMarkupHandler.java:124) + at org.attoparser.HtmlElement.handleOpenElementEnd(HtmlElement.java:109) + at org.attoparser.HtmlMarkupHandler.handleOpenElementEnd(HtmlMarkupHandler.java:297) + at org.attoparser.MarkupEventProcessorHandler.handleOpenElementEnd(MarkupEventProcessorHandler.java:402) + at org.attoparser.ParsingElementMarkupUtil.parseOpenElement(ParsingElementMarkupUtil.java:159) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:710) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + ... 50 common frames omitted +2021-01-28 17:54:29,287 ERROR [http-nio-8080-exec-5] o.a.c.c.C.[.[.[.[dispatcherServlet] [DirectJDKLog.java:175] Servlet.service() for servlet [dispatcherServlet] in context with path [/echo] threw exception [Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates//site/notice.html]")] with root cause +org.thymeleaf.exceptions.TemplateProcessingException: Could not parse as expression: "#" (template: "/site/notice" - line 51, col 12) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:131) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:62) + at org.thymeleaf.standard.expression.StandardExpressionParser.parseExpression(StandardExpressionParser.java:44) + at org.thymeleaf.engine.EngineEventUtils.parseAttributeExpression(EngineEventUtils.java:220) + at org.thymeleaf.engine.EngineEventUtils.computeAttributeExpression(EngineEventUtils.java:207) + at org.thymeleaf.standard.processor.AbstractStandardExpressionAttributeTagProcessor.doProcess(AbstractStandardExpressionAttributeTagProcessor.java:125) + at org.thymeleaf.processor.element.AbstractAttributeTagProcessor.doProcess(AbstractAttributeTagProcessor.java:74) + at org.thymeleaf.processor.element.AbstractElementTagProcessor.process(AbstractElementTagProcessor.java:95) + at org.thymeleaf.util.ProcessorConfigurationUtils$ElementTagProcessorWrapper.process(ProcessorConfigurationUtils.java:633) + at org.thymeleaf.engine.ProcessorTemplateHandler.handleOpenElement(ProcessorTemplateHandler.java:1314) + at org.thymeleaf.engine.TemplateHandlerAdapterMarkupHandler.handleOpenElementEnd(TemplateHandlerAdapterMarkupHandler.java:304) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler$InlineMarkupAdapterPreProcessorHandler.handleOpenElementEnd(InlinedOutputExpressionMarkupHandler.java:278) + at org.thymeleaf.standard.inline.OutputExpressionInlinePreProcessorHandler.handleOpenElementEnd(OutputExpressionInlinePreProcessorHandler.java:186) + at org.thymeleaf.templateparser.markup.InlinedOutputExpressionMarkupHandler.handleOpenElementEnd(InlinedOutputExpressionMarkupHandler.java:124) + at org.attoparser.HtmlElement.handleOpenElementEnd(HtmlElement.java:109) + at org.attoparser.HtmlMarkupHandler.handleOpenElementEnd(HtmlMarkupHandler.java:297) + at org.attoparser.MarkupEventProcessorHandler.handleOpenElementEnd(MarkupEventProcessorHandler.java:402) + at org.attoparser.ParsingElementMarkupUtil.parseOpenElement(ParsingElementMarkupUtil.java:159) + at org.attoparser.MarkupParser.parseBuffer(MarkupParser.java:710) + at org.attoparser.MarkupParser.parseDocument(MarkupParser.java:301) + at org.attoparser.MarkupParser.parse(MarkupParser.java:257) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parse(AbstractMarkupTemplateParser.java:230) + at org.thymeleaf.templateparser.markup.AbstractMarkupTemplateParser.parseStandalone(AbstractMarkupTemplateParser.java:100) + at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:666) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098) + at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072) + at org.thymeleaf.spring5.view.ThymeleafView.renderFragment(ThymeleafView.java:366) + at org.thymeleaf.spring5.view.ThymeleafView.render(ThymeleafView.java:190) + at org.springframework.web.servlet.DispatcherServlet.render(DispatcherServlet.java:1393) + at org.springframework.web.servlet.DispatcherServlet.processDispatchResult(DispatcherServlet.java:1138) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1077) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:962) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:888) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1597) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) diff --git a/log/community/log_info.log b/log/community/log_info.log index 692b0740..b3ccd92e 100644 --- a/log/community/log_info.log +++ b/log/community/log_info.log @@ -1,4264 +1,5147 @@ -2021-01-25 11:05:35,022 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 22600 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 11:05:35,027 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 11:05:35,067 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 11:05:35,067 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 11:05:35,670 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:05:35,672 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:05:35,683 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 11:05:35,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:05:35,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:05:35,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 11:05:35,700 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:05:35,701 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 11:05:35,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 11:05:35,885 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 11:05:35,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 11:05:35,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:05:35,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:05:35,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:05:35,932 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:05:35,967 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 11:05:36,090 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 11:05:36,093 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 11:05:36,329 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 11:05:36,336 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 11:05:36,419 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 11:05:36,420 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1352 ms -2021-01-25 11:05:36,884 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 11:05:36,946 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 11:05:38,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 11:05:39,099 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 11:05:39,116 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 11:05:39,128 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 11:05:39,138 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.515 seconds (JVM running for 5.444) -2021-01-25 11:05:44,930 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 11:05:44,931 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 11:05:44,933 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms -2021-01-25 11:05:55,003 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 11:05:55,269 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 11:06:48,805 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26704 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 11:06:48,808 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 11:06:48,851 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 11:06:48,852 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 11:06:49,526 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:06:49,526 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:06:49,541 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 11:06:49,543 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:06:49,543 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:06:49,551 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 11:06:49,561 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:06:49,561 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 11:06:49,576 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-25 11:06:49,771 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:06:49,821 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:06:49,863 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 11:06:49,987 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 11:06:49,990 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 11:06:50,243 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 11:06:50,251 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 11:06:50,351 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 11:06:50,351 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1498 ms -2021-01-25 11:06:50,899 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 11:06:50,960 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 11:06:53,720 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 11:06:53,891 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 11:06:53,906 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 11:06:53,915 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 11:06:53,924 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.478 seconds (JVM running for 6.287) -2021-01-25 11:08:25,915 INFO [http-nio-8080-exec-3] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 11:08:25,915 INFO [http-nio-8080-exec-3] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 11:08:25,916 INFO [http-nio-8080-exec-3] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 11:08:26,742 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 11:08:26,861 INFO [http-nio-8080-exec-2] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 11:12:58,030 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7680 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 11:12:58,035 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 11:12:58,065 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 11:12:58,065 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 11:12:58,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:12:58,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:12:58,530 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:12:58,540 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 11:12:58,550 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:12:58,550 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 11:12:58,560 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 11:12:58,710 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:12:58,750 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:12:58,780 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 11:12:58,880 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 11:12:58,881 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 11:12:59,070 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 11:12:59,077 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 11:12:59,150 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 11:12:59,150 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1080 ms -2021-01-25 11:12:59,580 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 11:12:59,640 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 11:13:01,360 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 11:13:01,545 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 11:13:01,560 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 11:13:01,570 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 11:13:01,581 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.892 seconds (JVM running for 4.809) -2021-01-25 11:13:09,055 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 11:13:09,055 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 11:13:09,056 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms -2021-01-25 11:13:09,077 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 11:13:09,195 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 11:17:06,659 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 12892 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 11:17:06,659 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 11:17:06,694 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 11:17:06,694 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 11:17:07,169 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:17:07,169 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:17:07,179 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:17:07,189 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 11:17:07,199 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:17:07,199 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 11:17:07,209 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 11:17:07,359 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:17:07,389 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:17:07,399 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:17:07,429 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 11:17:07,519 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 11:17:07,519 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 11:17:07,714 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 11:17:07,719 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 11:17:07,789 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 11:17:07,789 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1095 ms -2021-01-25 11:17:08,211 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 11:17:08,259 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 11:17:09,989 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 11:17:10,149 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 11:17:10,169 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 11:17:10,180 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 11:17:10,180 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.864 seconds (JVM running for 4.748) -2021-01-25 11:17:13,607 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 11:17:13,607 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 11:17:13,608 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 11:17:13,627 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 11:17:13,742 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 11:18:34,589 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7512 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 11:18:34,589 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 11:18:34,619 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 11:18:34,619 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 11:18:35,089 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:18:35,089 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:18:35,099 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:18:35,104 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 11:18:35,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:18:35,114 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 11:18:35,119 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 11:18:35,273 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:18:35,309 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:18:35,344 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 11:18:35,444 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 11:18:35,444 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 11:18:35,634 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 11:18:35,639 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 11:18:35,719 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 11:18:35,719 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1100 ms -2021-01-25 11:18:36,159 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 11:18:36,209 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 11:18:37,977 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 11:18:38,139 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 11:18:38,149 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 11:18:38,159 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 11:18:38,169 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.899 seconds (JVM running for 4.762) -2021-01-25 11:18:44,095 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 11:18:44,096 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 11:18:44,097 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 11:18:45,817 INFO [http-nio-8080-exec-5] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 11:18:45,933 INFO [http-nio-8080-exec-5] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 11:19:54,333 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 7840 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 11:19:54,333 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 11:19:54,369 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 11:19:54,369 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 11:19:54,849 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:19:54,850 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:19:54,860 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 11:19:54,863 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:19:54,864 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:19:54,867 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 11:19:54,876 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:19:54,877 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 11:19:54,886 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 11:19:55,042 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 11:19:55,082 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:19:55,083 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:19:55,084 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:19:55,109 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 11:19:55,208 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 11:19:55,213 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 11:19:55,429 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 11:19:55,439 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 11:19:55,513 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 11:19:55,513 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1144 ms -2021-01-25 11:19:55,924 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 11:19:55,976 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 11:19:57,694 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 11:19:57,891 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 11:19:57,906 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 11:19:57,914 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 11:19:57,919 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.933 seconds (JVM running for 4.815) -2021-01-25 11:20:00,181 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 11:20:00,181 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 11:20:00,182 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 11:20:00,205 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 11:20:00,325 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 11:22:03,497 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 19880 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 11:22:03,500 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 11:22:03,542 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 11:22:03,543 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 11:22:04,032 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:22:04,034 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:22:04,045 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 11:22:04,049 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:22:04,050 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 11:22:04,054 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 11:22:04,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 11:22:04,064 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 11:22:04,076 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 11:22:04,240 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 11:22:04,287 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:22:04,289 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:22:04,290 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 11:22:04,321 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 11:22:04,421 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 11:22:04,422 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 11:22:04,603 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 11:22:04,610 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 11:22:04,610 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 11:22:04,611 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 11:22:04,688 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 11:22:04,688 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1144 ms -2021-01-25 11:22:05,111 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 11:22:05,164 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 11:22:06,898 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 11:22:07,053 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 11:22:07,067 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 11:22:07,075 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 11:22:07,084 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 3.964 seconds (JVM running for 4.843) -2021-01-25 11:22:07,291 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 11:22:07,291 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 11:22:07,292 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms -2021-01-25 11:22:07,316 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 11:22:07,439 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 12:15:19,158 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 9892 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 12:15:19,160 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 12:15:19,193 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 12:15:19,194 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 12:15:19,685 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 12:15:19,686 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 12:15:19,696 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 12:15:19,699 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 12:15:19,700 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 12:15:19,703 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 12:15:19,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 12:15:19,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 12:15:19,722 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 12:15:19,874 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 12:15:19,914 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 12:15:19,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 12:15:19,916 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 12:15:19,947 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 12:15:20,129 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 12:15:20,131 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 12:15:20,354 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 12:15:20,360 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 12:15:20,360 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 12:15:20,361 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 12:15:20,467 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 12:15:20,468 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1273 ms -2021-01-25 12:15:20,933 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 12:15:20,997 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 12:15:22,802 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 12:15:23,067 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 12:15:23,082 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 12:15:23,090 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 12:15:23,099 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.337 seconds (JVM running for 5.242) -2021-01-25 12:15:32,637 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 12:15:32,638 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 12:15:32,640 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms -2021-01-25 12:15:32,655 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 12:15:32,669 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 12:15:32,790 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 12:15:32,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 12:15:32,851 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 12:15:32,857 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,861 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,870 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:32,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:33,476 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 12:15:33,482 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 12:15:33,483 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 12:15:33,489 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:37] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 12:15:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:43,533 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26424 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:15:43,538 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:15:43,568 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:15:43,568 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:15:44,043 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:15:44,043 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:15:44,053 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:15:44,064 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:15:44,074 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:15:44,074 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:15:44,086 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 15:15:44,242 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:15:44,273 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:15:44,283 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:15:44,318 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:15:44,474 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:15:44,483 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:15:44,708 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:15:44,718 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:15:44,859 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:15:44,859 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1286 ms -2021-01-25 15:15:45,541 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:15:45,608 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:15:47,236 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:15:47,237 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:15:47,237 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:15:47,485 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:15:47,501 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:15:47,510 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:15:47,519 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.317 seconds (JVM running for 5.156) -2021-01-25 15:15:51,093 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:15:51,093 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:15:51,094 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:15:51,105 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:15:51,118 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:15:51,246 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:15:51,275 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,289 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:15:51,306 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:15:51,312 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,319 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,330 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,936 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:15:51,940 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:15:51,944 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:51,946 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,955 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:15:53,958 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,964 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:15:53,966 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,968 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:15:53,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,981 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:15:53,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,984 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,985 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,987 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:15:53,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:15:53,995 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:15:53,996 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:53,997 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:15:53,998 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:15:53,999 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:54,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:15:54,002 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:15:54,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:54,005 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:15:54,006 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:15:54,126 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:15:54,129 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:57,001 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:15:57,003 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:15:57,005 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:15:57], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:16:08,467 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:16:08,469 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:16:08,482 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:16:08,484 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:16:15,002 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:16:15,004 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:16:15,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:15], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:16:18,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:16:18,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:16:18,407 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:18], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:16:20,867 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:16:20,869 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:16:20,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:16:20], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:32,821 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 13960 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:17:32,824 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:17:32,855 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:17:32,855 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:17:33,343 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:17:33,346 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:17:33,355 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:17:33,358 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:17:33,358 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:17:33,362 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:17:33,371 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:17:33,372 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:17:33,382 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 15:17:33,536 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:17:33,576 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:17:33,577 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:17:33,578 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:17:33,578 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:17:33,579 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:17:33,580 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:17:33,612 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:17:33,776 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:17:33,777 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:17:34,009 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:17:34,016 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:17:34,144 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:17:34,145 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1289 ms -2021-01-25 15:17:34,759 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:17:34,824 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:17:36,447 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:17:36,673 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:17:36,688 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:17:36,697 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:17:36,706 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.23 seconds (JVM running for 5.052) -2021-01-25 15:17:41,257 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:17:41,258 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:17:41,259 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:17:41,270 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:41,285 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:17:41,402 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:17:41,428 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:17:41,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:41,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:41,467 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,476 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,478 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:41,481 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:41,484 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:41,486 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,489 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:41,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:41,494 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,496 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:41,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:41,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:41,500 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:41,502 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:42,082 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:42,085 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,925 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:42,927 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,928 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:17:42,930 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,931 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:42,933 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,936 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:42,941 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,943 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,945 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,946 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,947 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,948 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:42,949 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,951 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:42,952 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:42,953 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,954 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:42,956 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:42,957 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,958 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:42,960 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:42,961 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:42,962 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:17:42,963 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:17:43,065 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:43,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:44,292 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:44,294 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:44,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:44,878 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:44,880 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:47,977 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:47,979 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:47,980 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:47,983 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:47,984 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:49,164 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:49,167 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:49,169 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:49,172 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:49,174 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:50,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:50,454 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:50,455 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:50,457 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:50,458 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:51,852 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:51,854 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:51,856 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:51,857 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:51,859 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:52,968 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:52,970 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:52,971 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:52,973 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:52,974 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:52], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:56,127 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:56,129 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:56,130 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:56,132 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:56,133 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:56], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:57,654 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:57,656 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:57,658 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:57,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:57,661 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:57], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:58,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:58,639 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:58,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:58,642 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:58,643 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:17:59,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:17:59,386 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:17:59,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:17:59,389 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:17:59,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:17:59], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:18:00,656 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:18:00,657 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:18:00,659 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:18:00,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:18:00,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:18:04,184 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:18:04,187 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:18:04,188 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:18:04,190 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:18:04,190 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:18:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:21:47,700 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 15000 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:21:47,700 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:21:47,734 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:21:47,734 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:21:48,205 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:21:48,205 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:21:48,214 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:21:48,224 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:21:48,234 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:21:48,234 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:21:48,244 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 15:21:48,394 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:21:48,424 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:21:48,434 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:21:48,435 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:21:48,436 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:21:48,465 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:21:48,624 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:21:48,624 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:21:48,849 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:21:48,854 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:21:48,959 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:21:48,959 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1225 ms -2021-01-25 15:21:49,586 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:21:49,654 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:21:51,284 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:21:51,524 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:21:51,534 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:21:51,544 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:21:51,558 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.229 seconds (JVM running for 5.078) -2021-01-25 15:21:56,517 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:21:56,517 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:21:56,518 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:21:56,529 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:21:56,543 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:21:56,661 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:21:56,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:56,703 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:21:56,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:21:56,724 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:56,727 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,448 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,450 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,451 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,453 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,457 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,460 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,463 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,467 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:21:57,927 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:21:57,933 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:21:57,936 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:21:57,939 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:21:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:01,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:22:01,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,947 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:01,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,957 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:01,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,963 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,965 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:01,966 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,969 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:01,970 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:01,973 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:01,975 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:01,977 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,978 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:01,979 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:01,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:01,983 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:01,985 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:01], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:02,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:02,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:03,349 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:03,353 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:03,356 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:22:03,366 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:03,366 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:03], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:22:06,447 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:06,449 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:22:06,452 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:22:06,456 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,457 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,459 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,461 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,461 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,463 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,464 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,469 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,470 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,473 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,474 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,475 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,476 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,478 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,478 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,479 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:06,578 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:06,580 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:06,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:06,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:08,835 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,836 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:22:08,838 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,841 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:08,842 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,844 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:08,846 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,847 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,848 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,849 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,851 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,852 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:08,853 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,854 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:08,856 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:08,857 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,859 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:08,860 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:08,861 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,862 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:08,863 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:08,864 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:08,865 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:08,866 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:09,037 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:09,041 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:10,833 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:10,834 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:10,836 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:22:10,839 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:10,840 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:22:11,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:11,691 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:11,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:22:11,694 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:11,695 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:11], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:22:13,922 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:13,924 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,926 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:22:13,928 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:22:13,930 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,931 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,932 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,933 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,934 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,935 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,936 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,937 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,938 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,940 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,941 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,942 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,943 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,944 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,945 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,946 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,947 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,948 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:13,948 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:13,949 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:22:14,083 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:14,086 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:14,090 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:14,093 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,360 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:16,362 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,363 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:22:16,364 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,365 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:16,367 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,368 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:16,370 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,371 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,372 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,374 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,376 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,377 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:16,378 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,379 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:16,380 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:16,381 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,382 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:16,383 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:16,384 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,385 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:16,386 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:16,387 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:22:16,388 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:22:16,390 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:22:16,561 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:22:16,564 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:22:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:37:56,153 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24048 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:37:56,156 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:37:56,191 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:37:56,191 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:37:56,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:37:56,710 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:37:56,721 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:37:56,723 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:37:56,724 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:37:56,728 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:37:56,737 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:37:56,738 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:37:56,748 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 15:37:56,900 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:37:56,939 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:37:56,940 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:37:56,941 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:37:56,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:37:56,970 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:37:57,130 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:37:57,130 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:37:57,393 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:37:57,399 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:37:57,400 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:37:57,400 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:37:57,511 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:37:57,511 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1319 ms -2021-01-25 15:37:58,175 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:37:58,240 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:37:59,880 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:38:00,135 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:38:00,164 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:38:00,179 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:38:00,190 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.381 seconds (JVM running for 5.23) -2021-01-25 15:38:00,871 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:38:00,871 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:38:00,872 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:38:00,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:00,900 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:38:01,030 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:38:01,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:38:01,095 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:38:01,104 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,107 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,934 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,937 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,940 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,941 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,942 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,945 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,947 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,948 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,951 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,952 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:01,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:01,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:02,411 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:02,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:02,419 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:02,423 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,329 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:04,331 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,338 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:38:04,340 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,341 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,343 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,352 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:04,357 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,360 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,361 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,362 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:04,363 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,365 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,367 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,368 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,371 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,371 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,372 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,373 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,374 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:04,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,379 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,380 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,381 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:04,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:04,385 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,386 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,388 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:04,389 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:04,390 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,391 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,392 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,393 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:04,394 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:04,395 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:04,397 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:04,397 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:04,398 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:04,400 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:04,525 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:04,528 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:12,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:12,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:12,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:38:12,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:12,580 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:12,582 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:12,583 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:12,694 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:12,697 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:12,697 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:12,700 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:13,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:13,882 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:13,885 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:38:13,887 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:13,888 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:16,738 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:16,740 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,741 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:38:16,743 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:38:16,748 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,750 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,751 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,752 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,753 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,754 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,755 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,757 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,758 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,759 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,760 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,761 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,762 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,764 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,765 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,766 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,767 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,768 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,769 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,770 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:16,874 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:16,876 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:16,887 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:16,890 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:19,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:19,208 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:19,210 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:38:19,211 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:19,212 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:19,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:19,213 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:19,315 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:19,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:19,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:19,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,926 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:21,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,930 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:38:21,931 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,932 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,933 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,934 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:21,935 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,936 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,937 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:21,941 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,943 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,944 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,945 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,946 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,946 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,947 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,948 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,949 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,950 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,950 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:21,951 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,952 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,953 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:21,955 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:21,956 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,957 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,958 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,959 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:21,960 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:21,961 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,962 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,963 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:21,964 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:21,965 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:21,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:21,967 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:21,968 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:21,969 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:21], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:22,113 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:22,115 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:22], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:25,463 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:25,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:25,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 15:38:25,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:25,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:32,498 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:32,499 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:32,503 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.logout]. -2021-01-25 15:38:32,529 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:32,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:41,564 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:41,570 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.login]. -2021-01-25 15:38:41,596 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:41,598 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,599 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:38:41,600 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:38:41,602 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,604 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,605 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,607 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,609 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,610 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,611 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,611 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,612 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,614 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,615 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,619 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,621 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:41,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:41,729 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:41,737 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:41,739 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:41], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,288 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:43,290 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,292 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:38:43,293 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,294 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,295 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,295 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:43,298 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,299 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,300 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,300 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:43,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,302 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,304 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,305 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,307 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,309 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,310 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,311 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,312 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,313 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,314 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,314 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:43,315 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,316 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,317 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:43,318 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:43,319 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,320 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,321 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,322 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:43,323 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:43,324 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,325 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,326 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,326 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:43,328 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:43,329 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:43,330 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:43,330 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:38:43,331 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:43,332 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:43,439 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:43,441 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:46,864 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:46,866 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:46,867 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.logout]. -2021-01-25 15:38:46,889 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:46,989 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:48,050 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:48,052 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:38:48,053 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:38:48,055 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,056 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,057 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,058 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,060 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,061 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,062 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,063 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,066 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,068 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,069 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:48,071 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:48,187 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:48,196 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:50,018 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:50,019 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:38:50,020 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,022 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,022 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:50,024 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,026 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,026 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:50,028 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,029 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,029 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,031 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,032 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:50,035 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,036 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,037 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:50,039 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:50,040 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,041 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,042 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:50,043 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:50,044 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:50,047 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:50,048 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:50,049 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:50,050 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:38:50,051 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:38:50,188 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:53,666 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:53,758 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:59,001 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:59,004 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.login]. -2021-01-25 15:38:59,024 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:59,026 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,027 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:38:59,028 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:38:59,030 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,031 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,032 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,033 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,033 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,034 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,034 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,035 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,036 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,037 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,037 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,038 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,039 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,040 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,040 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,041 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,042 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,044 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,044 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,045 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:38:59,139 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:59,141 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:38:59,150 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:38:59,153 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:38:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:02,165 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26420 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:43:02,170 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:43:02,223 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:43:02,224 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:43:02,868 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:43:02,870 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:43:02,882 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:43:02,885 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:43:02,886 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:43:02,890 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:43:02,901 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:43:02,902 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:43:02,913 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-25 15:43:03,082 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:43:03,131 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:43:03,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:43:03,132 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:43:03,133 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:43:03,134 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:43:03,167 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:43:03,370 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:43:03,372 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:43:03,625 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:43:03,633 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:43:03,633 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:43:03,634 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:43:03,759 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:43:03,759 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1534 ms -2021-01-25 15:43:04,454 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:43:04,520 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:43:06,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:43:06,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:43:06,272 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:43:06,510 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:43:06,524 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:43:06,533 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:43:06,542 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.886 seconds (JVM running for 6.152) -2021-01-25 15:43:09,182 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:43:09,182 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:43:09,183 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:43:09,194 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:09,206 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:43:09,323 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:43:09,348 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:09,362 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:43:09,377 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:43:09,384 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:09,386 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,060 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,061 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,063 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,064 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,066 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,067 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,069 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,070 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,079 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,080 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,083 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:10,525 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:10,529 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:10,534 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:10,536 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,658 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:20,661 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,663 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:43:20,664 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:43:20,668 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,671 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,672 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,675 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,677 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,678 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,679 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,681 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,681 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,683 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,684 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,685 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,686 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,688 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,689 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,691 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,691 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,692 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,693 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,695 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:20,801 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:20,806 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:20,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:20,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:50,148 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:50,150 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:50,212 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:50,215 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:50], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,637 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:58,639 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,640 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:43:58,642 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:43:58,644 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,645 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,647 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,649 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,650 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,651 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,652 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,653 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,654 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,655 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,656 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,657 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,658 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,659 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,660 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,661 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,662 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,664 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,665 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,666 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:43:58,948 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:58,950 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:58,959 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:58,962 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:59,047 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:59,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:43:59,132 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:43:59,135 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:43:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,563 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:44:07,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,567 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:44:07,569 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:44:07,572 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,573 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,574 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,576 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,577 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,578 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,579 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,580 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,581 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,582 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,583 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,584 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,587 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,590 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,590 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,592 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:44:07,912 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:44:07,914 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,924 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:44:07,928 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:07,991 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:44:07,993 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:44:08,066 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:44:08,069 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:44:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:40,066 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 27004 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:46:40,069 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:46:40,098 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:46:40,099 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:46:40,599 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:46:40,600 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:46:40,612 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:46:40,615 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:46:40,615 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:46:40,620 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:46:40,630 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:46:40,631 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:46:40,642 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-25 15:46:40,819 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:46:40,869 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:46:40,870 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:46:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:46:40,871 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:46:40,872 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:46:40,907 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:46:41,088 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:46:41,090 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:46:41,407 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:46:41,415 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:46:41,415 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:46:41,416 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:46:41,578 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:46:41,579 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1480 ms -2021-01-25 15:46:42,493 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:46:42,572 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:46:44,270 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:46:44,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:46:44,271 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:46:44,523 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:46:44,538 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:46:44,546 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:46:44,556 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.862 seconds (JVM running for 5.849) -2021-01-25 15:46:47,295 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:46:47,296 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:46:47,297 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:46:47,307 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:46:47,320 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:46:47,437 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:46:47,463 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:47,477 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:46:47,492 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:46:47,497 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:47,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,324 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,325 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,331 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,332 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,334 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,335 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,337 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,338 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,340 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:46:48,894 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:46:48,900 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:48,904 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:46:48,910 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:58,905 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:46:58,907 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:46:58,969 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:46:58,971 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:46:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:50:08,603 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,607 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:50:08,609 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:50:08,613 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,614 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,615 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,618 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,619 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,621 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,622 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,624 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,625 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,626 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,627 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,630 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,631 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,632 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,633 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,635 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,636 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,638 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,639 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,640 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:50:08,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:50:08,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:08,925 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:50:08,927 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:50:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:50:55,409 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18380 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:50:55,412 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:50:55,443 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:50:55,444 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:50:55,917 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:50:55,919 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:50:55,928 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:50:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:50:55,931 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:50:55,936 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:50:55,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:50:55,944 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:50:55,954 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 15:50:56,102 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:50:56,146 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:50:56,147 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:50:56,147 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:50:56,148 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:50:56,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:50:56,149 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:50:56,179 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:50:56,332 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:50:56,334 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:50:56,546 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:50:56,552 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:50:56,553 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:50:56,553 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:50:56,664 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:50:56,666 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1222 ms -2021-01-25 15:50:57,293 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:50:57,356 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:50:59,969 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:50:59,970 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:50:59,970 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:51:00,215 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:51:00,229 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:51:00,238 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:51:00,247 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.225 seconds (JVM running for 6.366) -2021-01-25 15:51:01,355 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:51:01,356 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:51:01,357 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:51:01,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:51:01,383 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:51:01,502 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:51:01,531 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:01,546 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:51:01,563 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:51:01,569 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:01,571 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:01], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,314 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,315 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,317 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,318 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,320 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,321 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,322 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,323 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,327 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,329 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,331 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,332 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,333 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,334 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,335 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:51:02,777 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:51:02,782 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:02,786 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:51:02,793 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:51:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:51:57,276 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18972 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:51:57,279 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:51:57,310 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:51:57,310 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:51:57,770 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:51:57,771 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:51:57,781 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:51:57,784 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:51:57,785 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:51:57,788 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:51:57,797 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:51:57,798 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:51:57,808 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 15:51:57,957 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:51:58,004 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:51:58,005 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:51:58,006 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:51:58,037 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:51:58,188 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:51:58,190 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:51:58,401 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:51:58,407 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:51:58,408 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:51:58,408 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:51:58,520 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:51:58,520 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1209 ms -2021-01-25 15:51:59,181 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:51:59,253 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:52:01,869 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:52:02,167 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:52:02,182 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:52:02,191 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:52:02,200 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.241 seconds (JVM running for 6.362) -2021-01-25 15:52:07,598 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:52:07,599 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:52:07,600 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:52:07,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:52:07,624 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:52:07,740 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:52:07,766 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:07,780 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:52:07,794 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:52:07,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:07,801 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,577 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,579 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,580 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,582 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,587 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,589 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,594 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,596 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,597 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,598 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:08,599 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:08,601 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:52:09,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:52:09,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:52:09,051 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:52:09,053 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:52:09], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:55:56,008 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25568 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 15:55:56,011 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 15:55:56,039 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 15:55:56,040 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 15:55:56,508 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:55:56,509 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:55:56,520 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 15:55:56,522 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:55:56,523 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 15:55:56,527 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 15:55:56,536 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 15:55:56,537 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 15:55:56,546 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 15:55:56,698 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 15:55:56,743 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 15:55:56,744 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 15:55:56,745 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:55:56,745 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 15:55:56,775 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 15:55:56,931 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 15:55:56,932 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 15:55:57,147 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 15:55:57,154 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 15:55:57,270 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 15:55:57,271 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1231 ms -2021-01-25 15:55:57,953 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 15:55:58,018 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 15:55:59,672 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 15:55:59,917 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 15:55:59,932 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 15:55:59,941 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 15:55:59,949 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.28 seconds (JVM running for 5.285) -2021-01-25 15:56:02,871 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 15:56:02,871 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 15:56:02,872 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 15:56:02,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:02,896 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 15:56:03,014 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 15:56:03,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,053 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:56:03,068 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:56:03,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,075 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,816 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,819 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,821 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,822 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,824 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,828 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,829 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,830 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,831 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,833 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,836 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:03,837 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:03,838 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:03], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:04,287 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:04,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:04,296 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:04,301 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,245 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:31,247 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,249 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:56:31,251 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:56:31,257 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,260 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,261 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,264 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,265 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,267 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,269 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,270 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,271 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,272 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,275 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,276 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,278 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,280 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,281 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,282 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,283 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,285 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:31,523 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:31,526 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:31,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:31,535 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,128 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:33,130 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,132 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:56:33,133 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:56:33,136 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,137 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,139 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,141 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,142 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,144 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,145 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,146 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,147 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,148 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,149 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,150 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,151 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,152 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,153 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,155 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,156 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,158 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,159 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,160 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:33,256 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:33,259 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:33,266 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:33,268 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,902 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:44,905 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,906 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:56:44,907 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:56:44,910 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,911 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,912 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,914 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,914 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,915 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,916 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,918 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,922 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,923 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,925 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,927 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,927 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,931 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:44,932 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:44,933 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:45,169 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:45,174 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:45,179 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:45,181 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,430 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:46,432 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,434 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 15:56:46,441 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 15:56:46,447 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:46,448 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:46,451 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,453 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:46,454 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:46,458 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,459 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:46,460 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:46,464 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,465 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:46,466 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:46,467 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:46,469 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:46,472 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,474 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:46,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:46,592 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:46,602 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:46,604 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,069 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:54,071 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,073 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:56:54,075 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:56:54,077 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,079 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,079 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,080 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,081 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,082 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,083 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,084 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,084 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,085 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,086 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,087 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,087 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,089 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,091 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,092 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,094 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,094 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,095 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:54,200 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:54,203 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:54,213 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:54,215 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,703 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:55,705 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,706 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 15:56:55,709 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 15:56:55,714 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:55,715 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:55,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,719 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:55,720 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:55,723 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,724 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:55,725 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:55,729 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,730 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:55,732 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:55,733 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,734 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:55,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:55,738 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:55,843 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:55,847 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:55,856 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:55,858 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,890 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:56,891 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,892 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 15:56:56,895 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 15:56:56,898 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,899 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,900 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,901 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,901 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,902 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,903 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,904 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,904 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,905 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,906 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,907 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,907 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,908 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,909 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,910 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,911 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,913 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:56,914 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:56,915 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:56:57,010 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:57,013 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:57,022 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:57,024 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,070 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:58,072 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,073 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 15:56:58,077 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 15:56:58,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:58,084 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:58,087 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,088 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:58,089 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:58,092 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:58,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:58,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:58,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:58,102 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:56:58,104 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:58,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:56:58,210 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:58,214 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:56:58,219 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:56:58,221 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:56:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,057 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:58:39,059 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,064 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 15:58:39,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,067 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,076 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:58:39,081 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,082 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,083 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:58:39,085 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,086 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,086 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,087 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,089 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,090 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,091 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,091 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,092 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,093 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,094 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:58:39,096 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,097 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,098 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:58:39,099 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:58:39,100 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,102 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:58:39,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:58:39,105 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,106 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,107 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:58:39,108 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:58:39,109 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:39,110 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 15:58:39,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 15:58:39,112 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 15:58:39,113 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 15:58:39,230 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:58:39,232 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,111 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:58:46,112 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,114 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 15:58:46,117 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 15:58:46,122 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:58:46,124 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:58:46,127 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,128 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:58:46,129 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:58:46,132 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,133 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:58:46,134 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:58:46,138 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,139 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:58:46,140 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:58:46,141 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,142 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:58:46,143 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:58:46,146 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,148 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:58:46,250 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:58:46,252 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:58:46,280 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:58:46,282 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:58:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:04,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:59:04,563 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:04,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:59:04,569 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:04,811 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:59:04,813 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:59:06,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,348 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 15:59:06,352 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 15:59:06,355 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:59:06,356 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:59:06,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:59:06,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:59:06,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,367 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:59:06,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:59:06,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:59:06,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:59:06,374 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 15:59:06,376 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:59:06,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 15:59:06,475 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:59:06,477 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 15:59:06,484 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 15:59:06,487 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 15:59:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,298 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:00:43,299 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,300 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:00:43,303 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:00:43,307 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:00:43,308 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:00:43,312 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,314 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:00:43,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:00:43,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,319 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:00:43,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:00:43,323 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,324 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:00:43,325 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:00:43,326 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,327 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:00:43,329 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:00:43,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,333 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:00:43,562 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:00:43,565 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:00:43,570 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:00:43,571 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:00:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:33,834 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 24188 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 16:01:33,839 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 16:01:33,892 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 16:01:33,892 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 16:01:34,634 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 16:01:34,636 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 16:01:34,648 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 16:01:34,652 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 16:01:34,653 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 16:01:34,657 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 16:01:34,669 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 16:01:34,670 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 16:01:34,682 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-25 16:01:34,876 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 16:01:34,928 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 16:01:34,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 16:01:34,929 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 16:01:34,930 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 16:01:34,931 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 16:01:34,970 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 16:01:35,165 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 16:01:35,167 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 16:01:35,445 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 16:01:35,458 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 16:01:35,459 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 16:01:35,459 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 16:01:35,586 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 16:01:35,586 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1693 ms -2021-01-25 16:01:36,291 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 16:01:36,354 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 16:01:38,085 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 16:01:38,358 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 16:01:38,376 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 16:01:38,386 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 16:01:38,398 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.128 seconds (JVM running for 6.344) -2021-01-25 16:01:38,437 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 16:01:38,437 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 16:01:38,438 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 16:01:38,451 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:38,467 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 16:01:38,610 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 16:01:38,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:38,657 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:01:38,666 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:01:38,673 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:38,674 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:38,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:38,691 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:38,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:38,697 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:38,699 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:38,701 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:38,705 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:38,707 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:38,708 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:38,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:38,714 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:38,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:38,720 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:38,723 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:38], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:39,448 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:39,454 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:39,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:39,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,186 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:42,187 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,189 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 16:01:42,195 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 16:01:42,198 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,199 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,779 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,781 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,782 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,783 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,785 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,786 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,787 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,789 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,791 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,792 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,793 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,796 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,797 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,799 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,800 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,801 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,802 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,804 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:42,910 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:42,913 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:42,920 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:42,922 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:42], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,561 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:51,563 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,564 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:01:51,567 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:01:51,572 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:51,574 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:51,577 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,579 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:51,580 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:51,583 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,584 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:51,585 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:51,589 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,591 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:51,592 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:51,593 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,594 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:51,595 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:51,598 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,599 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:51,710 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:51,713 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:51,718 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:51,722 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,599 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:54,601 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,602 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:01:54,606 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:01:54,610 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:54,612 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:54,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,617 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:54,618 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:54,620 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,622 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:54,623 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:54,627 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,628 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:54,630 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:54,631 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,632 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:01:54,633 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:54,636 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:01:54,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:54,747 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:54,754 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:54,756 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,395 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:56,397 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,398 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 16:01:56,399 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 16:01:56,403 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,404 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,405 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,406 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,407 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,409 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,410 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,412 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,413 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,415 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,417 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,418 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,419 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,420 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,421 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,422 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,423 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,424 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 16:01:56,522 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:56,523 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:01:56,534 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:01:56,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:01:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,512 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:15,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,515 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:02:15,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:02:15,524 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:15,526 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:15,529 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,530 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:15,531 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:15,533 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,535 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:15,536 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:15,539 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,540 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:15,541 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:15,542 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,543 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:15,544 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:15,547 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,548 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:15,791 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:15,794 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:15,799 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:15,801 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:18,707 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:18,708 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:18,713 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:18,714 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:18,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:18,819 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:20,235 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:20,237 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:20,242 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:20,244 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 16:02:20,245 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:20,246 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:20,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:20,248 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:20,393 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:20,396 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:33,962 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:33,964 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:33,965 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:02:33,969 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:02:33,973 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:33,974 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:33,976 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:33,977 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:33,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:33,981 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:33,982 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:33,984 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:33,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:33,989 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:33,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:33,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:33,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:02:33,993 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:33,995 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:33,996 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:33], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:02:34,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:34,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:02:34,285 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:02:34,287 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:02:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:03:32,605 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:03:32,607 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:03:32,608 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:03:32,609 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 16:03:32,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:03:32,613 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:03:32,614 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:03:32,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:03:32,855 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:03:32,857 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:03:32], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:06,438 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:06,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:06,441 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:06,443 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 16:04:06,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:06,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:06,448 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:06,449 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:06,688 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:06,689 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:22,771 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26164 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 16:04:22,773 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 16:04:22,804 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 16:04:22,805 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 16:04:23,267 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 16:04:23,269 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 16:04:23,279 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 16:04:23,281 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 16:04:23,281 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 16:04:23,285 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 16:04:23,294 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 16:04:23,295 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 16:04:23,304 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 16:04:23,453 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 16:04:23,490 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 16:04:23,491 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 16:04:23,492 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 16:04:23,521 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 16:04:23,675 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 16:04:23,677 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 16:04:23,895 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 16:04:23,901 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 16:04:23,902 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 16:04:23,902 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 16:04:24,003 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 16:04:24,004 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1199 ms -2021-01-25 16:04:24,616 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 16:04:24,679 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 16:04:26,283 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 16:04:26,518 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 16:04:26,533 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 16:04:26,542 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 16:04:26,550 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.111 seconds (JVM running for 4.969) -2021-01-25 16:04:29,519 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 16:04:29,520 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 16:04:29,521 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 16:04:29,532 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:29,544 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 16:04:29,661 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 16:04:29,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:29,702 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:04:29,710 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:04:29,716 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:29,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:29,731 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:29,733 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:29,735 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:29,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:29,740 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:29,742 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:29,745 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:29,747 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:29,748 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:29,750 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:29,753 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:29,755 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:29,758 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:29,760 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:30,318 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:30,325 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:30,326 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:30,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,582 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:31,584 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,586 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:04:31,590 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:04:31,594 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:31,596 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:31,599 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,601 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:31,602 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:31,607 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,609 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:31,610 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:31,613 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,615 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:31,616 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:31,617 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,619 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:31,620 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:31,623 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,625 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:04:31,726 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:31,729 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:31,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:31,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:45,131 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:45,134 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:45,140 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:04:45,141 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 16:04:45,143 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:45,144 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:45,145 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:45,146 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:04:45,385 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:04:45,389 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:04:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,349 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:04,351 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,352 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:05:04,355 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:05:04,361 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:04,363 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:04,366 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,367 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:04,369 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:04,372 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,373 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:04,374 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:04,377 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,378 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:04,379 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:04,380 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,381 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:04,382 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:04,385 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,386 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:04,619 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:04,621 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:04,629 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:04,631 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,654 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:05,656 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,657 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:05:05,662 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:05:05,667 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:05,668 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:05,671 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,672 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:05,673 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:05,678 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,679 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:05,680 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:05,683 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:05,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:05,687 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:05,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:05,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,693 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:05,788 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:05,790 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:05,797 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:05,799 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:07,979 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:07,981 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:07,996 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:07,998 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:07], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:35,289 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:35,292 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:35,293 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:35,296 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 16:05:35,298 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:35,300 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:35,301 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:35,302 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:35,542 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:35,545 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:44,404 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:44,406 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:44,407 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:44,408 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 16:05:44,409 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:44,410 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:44,411 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:44,412 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:44,552 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:44,555 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,096 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:52,098 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,099 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 16:05:52,102 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 16:05:52,106 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:52,107 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:52,111 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,112 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:52,113 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:52,116 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,117 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:52,118 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:52,121 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,123 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:52,124 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:52,125 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,127 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:05:52,128 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:52,131 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,132 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 16:05:52,237 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:52,239 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:05:52,244 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:05:52,247 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:05:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:16,798 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:06:16,800 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:16,804 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:06:16,806 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:16,916 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:06:16,918 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:19,154 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:06:19,155 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:19,157 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 16:06:19,158 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 16:06:19,159 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:19,160 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:19,161 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 16:06:19,266 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 16:06:19,269 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 16:06:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:41,926 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2088 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:19:41,929 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:19:41,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:19:41,968 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:19:42,466 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:19:42,467 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:19:42,477 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:19:42,480 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:19:42,481 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:19:42,485 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:19:42,494 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:19:42,495 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:19:42,504 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 17:19:42,662 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:19:42,702 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:19:42,703 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:19:42,704 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:19:42,737 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:19:42,900 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:19:42,902 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:19:43,133 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:19:43,139 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:19:43,140 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:19:43,140 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:19:43,248 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:19:43,248 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1279 ms -2021-01-25 17:19:43,899 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:19:43,968 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:19:46,598 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:19:46,599 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:19:46,599 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:19:46,874 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:19:46,891 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:19:46,900 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:19:46,910 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.349 seconds (JVM running for 6.187) -2021-01-25 17:19:47,660 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:19:47,660 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:19:47,662 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 17:19:47,676 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:19:47,692 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:19:47,821 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:19:47,849 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:47,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:19:47,874 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:19:47,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:19:47,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:19:47,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:47,901 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:19:47,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:19:47,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:47,908 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:19:47,910 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:19:47,914 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:47,916 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:19:47,917 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:19:47,919 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:47,924 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:19:47,927 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:19:47,931 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:47,933 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:19:48,530 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:19:48,533 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:19:48,535 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:48,536 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:52,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:19:52,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:52,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 17:19:52,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 17:19:52,388 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:52,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,055 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,058 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,059 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,060 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,062 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,065 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,067 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,068 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,071 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,072 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,073 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,074 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,076 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,077 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,078 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:19:53,182 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:19:53,187 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:19:53,194 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:19:53,197 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:19:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,308 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:02,310 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,315 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:20:02,317 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,318 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,320 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,332 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:02,336 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,338 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,341 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,343 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:02,344 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,346 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,347 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,348 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,349 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,350 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,351 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,352 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,354 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,356 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,358 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,359 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:02,360 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,361 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,362 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,363 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:02,365 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:02,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,367 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,369 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:02,370 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:02,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,374 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:02,378 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:02,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:02,380 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:02,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:02,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:02,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:02,636 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:02,639 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:02], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:05,151 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:05,154 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:05,156 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:05,158 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:20:05,269 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:05,272 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,375 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:08,377 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,379 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:20:08,380 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,381 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,382 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,383 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:08,384 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,385 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,386 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,387 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:08,390 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,391 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,392 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,394 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,395 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,397 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,398 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,399 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,400 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,401 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,402 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:08,403 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,404 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,405 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:08,407 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:08,408 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,409 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,410 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:08,412 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:08,413 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,414 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:08,416 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:08,417 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:08,418 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:08,419 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:08,420 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:08,421 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:08,525 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:08,530 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:08], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:10,099 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:10,100 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:10,102 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:20:10,132 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:10,133 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:12,041 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:12,043 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:12,109 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:12,111 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:12,258 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:12,262 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,879 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:15,881 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,882 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:20:15,884 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,886 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,887 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,888 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:15,890 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,892 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,893 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,894 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:15,895 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,896 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,897 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,898 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,899 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,900 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,902 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,903 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,904 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,906 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,907 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,908 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:15,909 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,911 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:15,912 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:15,913 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,914 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,914 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,915 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:15,916 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:15,917 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,918 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:15,920 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:15,922 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:15,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:15,923 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:15,924 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:15,925 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:15], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:16,030 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:16,032 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:18,692 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:18,694 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:18,695 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:20:18,701 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:18,702 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:20,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,370 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:20:20,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:20,375 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,376 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:20,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,380 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,386 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,387 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,388 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:20,390 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,391 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,392 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,393 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:20,394 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:20,395 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,396 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,396 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,397 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:20,399 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:20,400 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,401 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,402 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,402 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:20,403 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:20,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:20,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:20,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:20,406 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:20,407 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:20,498 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:20,500 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:20], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,234 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:25,236 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,237 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:20:25,241 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:20:25,245 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:25,246 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:25,249 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,250 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:25,251 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:25,254 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,255 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:25,257 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:25,260 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,262 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:25,262 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:25,264 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,265 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:25,266 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:25,269 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,270 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:25,405 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:25,408 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:25,414 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:25,416 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:39,525 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:39,526 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:39,527 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:39,528 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:20:39,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:39,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:39], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:40,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:40,674 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:40,675 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:40,676 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:20:40,764 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:40,766 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,222 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:44,225 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,227 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:20:44,228 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,229 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,230 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,230 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:44,232 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,233 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,233 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,234 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:44,235 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,236 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,236 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,237 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,238 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,239 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,239 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,241 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,243 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,244 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,244 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:44,245 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,246 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:44,248 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:44,249 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,250 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:44,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:44,253 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:44,257 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:44,259 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:44,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:44,261 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:44,262 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:44,263 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:44,362 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:44,364 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:45,820 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:45,822 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:45,824 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:20:45,830 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:45,831 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:48,454 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:48,456 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:48,457 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:20:48,462 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:48,463 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:49,939 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:49,940 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:49,942 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:20:49,947 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:49,948 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,333 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:51,334 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,336 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:20:51,340 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,341 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,342 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,343 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:51,345 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,346 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,347 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:51,348 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,349 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,350 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,351 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,352 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,353 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,354 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,355 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,356 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,357 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:51,359 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,360 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,361 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:51,362 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:51,363 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,364 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,365 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:51,366 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:51,367 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,368 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,369 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,369 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:51,371 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:51,373 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:51,374 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:51,375 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:20:51,375 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:20:51,376 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:20:51,468 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:51,471 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,066 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:52,068 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,069 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:20:52,074 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:20:52,077 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:52,078 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:52,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,082 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:52,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:52,086 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:52,089 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:52,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,093 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:52,094 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:52,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:20:52,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:52,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,101 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:20:52,199 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:52,201 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:52,212 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:52,214 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:54,797 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:54,799 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:54,803 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:54,805 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:54,906 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:54,908 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,732 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:56,733 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,734 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 17:20:56,735 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 17:20:56,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,737 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,738 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,739 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,741 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,741 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,743 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,744 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,745 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,745 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,746 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,747 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,748 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,748 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,749 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,750 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,751 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,751 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:20:56,848 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:56,850 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:56,856 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:56,858 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:58,004 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:58,006 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:58,007 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:58,008 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:20:58,101 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:58,103 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:59,413 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:59,415 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:59,416 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:20:59,417 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:20:59,509 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:20:59,511 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:20:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:03,728 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,730 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:21:03,734 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:21:03,739 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:21:03,740 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:21:03,742 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,743 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:21:03,744 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:21:03,748 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,749 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:21:03,750 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:21:03,753 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,754 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:21:03,755 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:21:03,756 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,757 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:21:03,758 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:21:03,760 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,761 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:21:03,860 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:03,862 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:03,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:03,873 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:05,591 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:05,594 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:05,597 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:05,598 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:05,692 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:05,695 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:45,841 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2820 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:21:45,846 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:21:45,912 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:21:45,913 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:21:46,674 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:21:46,676 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:21:46,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:21:46,694 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:21:46,695 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:21:46,701 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:21:46,712 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:21:46,713 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:21:46,726 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-25 17:21:46,936 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:21:46,982 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:21:46,983 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:21:46,983 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:21:46,984 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:21:46,985 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:21:46,985 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:21:47,022 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:21:47,213 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:21:47,215 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:21:47,480 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:21:47,488 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:21:47,489 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:21:47,489 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:21:47,677 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:21:47,677 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1762 ms -2021-01-25 17:21:48,421 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:21:48,489 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:21:51,204 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:21:51,443 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:21:51,458 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:21:51,466 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:21:51,474 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.78 seconds (JVM running for 8.569) -2021-01-25 17:21:51,578 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:21:51,578 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:21:51,580 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms -2021-01-25 17:21:51,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:51,605 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:21:51,725 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:21:51,752 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:51,766 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 17:21:51,781 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 17:21:51,786 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:51,788 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,566 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,568 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,570 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,572 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,573 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,575 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,576 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,578 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,579 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,582 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,585 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,586 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,588 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,589 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,591 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:52,592 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:52,593 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:52], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:53,810 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:53,810 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:53,818 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:53,824 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:55,041 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,047 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:21:55,049 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,050 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,052 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,061 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:21:55,067 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,071 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,073 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:21:55,074 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,079 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,084 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,086 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,087 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,088 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:21:55,090 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,093 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,094 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,095 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:21:55,096 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:21:55,097 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,099 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,100 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,101 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:21:55,102 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:21:55,104 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,105 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,106 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,107 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:21:55,108 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:21:55,110 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:55,111 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:21:55,112 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:21:55,113 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:21:55,114 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:21:55,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:55,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:56,205 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:56,206 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:56,231 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:56,233 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:21:56,339 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:21:56,342 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:21:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,034 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:04,036 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,037 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:22:04,039 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,040 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,041 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,042 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:04,044 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,046 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,047 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,048 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:04,051 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,052 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,053 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,054 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,055 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,057 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,058 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,059 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,061 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,063 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:04,065 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,066 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,067 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:04,068 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:04,069 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,070 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,070 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,071 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:04,072 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:04,073 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,074 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,075 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,076 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:04,077 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:04,079 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:04,080 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:04,080 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:04,081 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:04,082 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:04,175 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:04,177 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:04], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:05,011 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:05,013 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:05,035 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:05,037 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:05,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:05,159 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:48,709 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 18340 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:22:48,716 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:22:48,830 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:22:48,831 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:22:49,752 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:22:49,754 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:22:49,770 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:22:49,774 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:22:49,775 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:22:49,781 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:22:49,794 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:22:49,795 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:22:49,810 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. -2021-01-25 17:22:50,025 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:22:50,076 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:22:50,077 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:22:50,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:22:50,078 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:22:50,079 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:22:50,136 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:22:50,375 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:22:50,378 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:22:50,706 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:22:50,715 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:22:50,715 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:22:50,716 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:22:50,867 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:22:50,867 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2035 ms -2021-01-25 17:22:51,734 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:22:51,813 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:22:53,492 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:22:53,493 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:22:53,493 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:22:53,732 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:22:53,747 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:22:53,755 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:22:53,764 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.069 seconds (JVM running for 7.972) -2021-01-25 17:22:53,798 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:22:53,798 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:22:53,799 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 17:22:53,811 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:53,824 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:22:53,945 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:22:53,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:53,990 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:22:53,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:53,997 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,803 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:54,820 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,822 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,823 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,825 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:54,828 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,831 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,834 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,836 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,838 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,843 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,846 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,847 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,851 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,853 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,854 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,856 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:54,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,863 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,866 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:54,869 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:54,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,878 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:54,880 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:54,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,887 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:54,889 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:54,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:54,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:22:54,896 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:22:54,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:22:54,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:54], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:22:56,164 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:56,170 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:56], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:58,948 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:58,950 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:58,952 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:22:58,953 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:22:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:22:59,150 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:22:59,153 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:22:59], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:18,923 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 20712 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:25:18,930 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:25:19,010 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:25:19,011 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:25:19,853 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:25:19,855 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:25:19,871 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:25:19,875 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:25:19,876 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:25:19,881 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:25:19,894 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:25:19,895 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:25:19,909 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. -2021-01-25 17:25:20,122 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:25:20,179 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:25:20,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:25:20,181 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:25:20,182 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:25:20,183 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:25:20,221 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:25:20,406 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:25:20,408 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:25:20,644 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:25:20,650 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:25:20,650 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:25:20,651 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:25:20,768 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:25:20,768 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1755 ms -2021-01-25 17:25:21,471 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:25:21,541 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:25:23,220 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:25:23,220 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:25:23,221 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:25:23,507 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:25:23,525 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:25:23,537 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:25:23,550 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.355 seconds (JVM running for 6.255) -2021-01-25 17:25:43,526 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:25:43,527 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:25:43,528 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 17:25:43,540 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:25:43,553 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:25:43,672 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:25:43,698 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:43,717 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:25:43,722 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:43,724 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,407 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,416 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:25:44,423 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,426 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,427 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,428 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:25:44,431 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,433 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,435 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,436 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,438 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,439 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,441 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,442 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,445 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,446 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,447 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:25:44,450 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,453 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:25:44,456 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:25:44,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,460 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,462 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:25:44,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:25:44,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,468 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,469 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:25:44,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:25:44,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:44,473 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:25:44,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:25:44,475 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:25:44,476 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:25:44,935 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:25:44,939 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:46,899 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:25:46,901 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:46,903 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:46,904 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:46], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:25:47,010 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:25:47,013 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:25:47,022 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:25:47,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:25:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:38,861 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 2660 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:26:38,865 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:26:38,923 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:26:38,924 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:26:39,889 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:26:39,893 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:26:39,922 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 21 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:26:39,933 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:26:39,934 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:26:39,946 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:26:39,970 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:26:39,973 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:26:40,001 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Redis repository interfaces. -2021-01-25 17:26:40,407 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:26:40,493 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:26:40,496 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:26:40,497 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:26:40,498 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:26:40,499 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:26:40,499 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:26:40,500 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:26:40,500 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:26:40,572 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:26:40,879 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:26:40,882 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:26:41,254 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:26:41,272 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:26:41,273 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:26:41,273 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:26:41,422 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:26:41,422 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2496 ms -2021-01-25 17:26:42,290 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:26:42,374 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:26:44,225 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:26:44,226 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:26:44,226 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:26:44,470 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:26:44,485 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:26:44,494 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:26:44,502 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.283 seconds (JVM running for 7.919) -2021-01-25 17:26:44,616 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:26:44,616 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:26:44,617 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 17:26:44,629 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:44,643 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:26:44,761 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:26:44,790 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:44,809 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:26:44,813 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:44,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:45,915 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:45,929 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:45,939 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,943 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:45,945 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:45,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:45,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,953 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:45,954 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:45,956 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,959 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:45,964 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:45,965 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,968 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:45,973 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:45,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:45,978 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,981 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:45,982 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:45,984 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:45,987 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:45,991 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:45,993 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:45,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:45,997 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:45,999 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:45], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:46,001 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:46,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:46,006 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:46,007 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:46,009 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:46,011 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:46,014 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:46,015 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:46,016 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:46,019 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:46,977 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:46,983 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,464 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:48,467 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,469 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:26:48,470 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,471 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,473 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,474 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:48,476 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,481 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,482 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,483 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:48,486 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,487 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,488 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,489 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,490 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,492 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,492 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,493 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,495 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,496 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,497 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,498 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:48,500 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,501 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,502 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:48,503 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:48,505 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,506 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,507 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:48,509 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:48,510 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,511 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,512 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,513 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:48,514 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:48,516 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:48,517 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:48,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:48,518 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:26:48,519 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:26:48,622 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:48,624 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:48], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:53,143 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:53,145 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:53,148 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:53,149 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:26:53,253 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:53,255 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:53,265 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:53,267 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:53], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:55,567 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:55,569 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:55,571 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:26:55,600 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:26:55,601 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:26:57,027 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:57,030 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:57,033 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:57,034 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:26:57,157 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:57,159 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:26:57,170 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:26:57,172 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:26:57], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,193 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:13,194 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,204 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.addComment]. -2021-01-25 17:27:13,241 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:13,242 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,243 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. -2021-01-25 17:27:13,245 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,246 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,247 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,248 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:27:13,251 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,252 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,253 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,254 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:27:13,255 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,256 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,257 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,258 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,259 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,260 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,261 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,262 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,264 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,265 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,266 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:27:13,268 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,269 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,270 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:27:13,271 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:27:13,273 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,274 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,274 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,275 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:27:13,276 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,278 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,279 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:27:13,280 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,282 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,283 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,284 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:27:13,285 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:27:13,286 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:13,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:13,288 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:13,289 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. -2021-01-25 17:27:13,290 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.CommentService.findCommentCount]. -2021-01-25 17:27:13,541 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:13,543 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:27,051 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:27,053 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:27,054 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:27,055 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:27:27,293 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:27,296 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:27], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:29,588 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:29,590 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:29,592 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:27:29,599 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:29,600 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:29], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:30,654 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:30,655 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:30,657 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:30,658 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:27:30,759 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:30,761 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:34,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:34,568 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:34,569 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.like]. -2021-01-25 17:27:34,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:27:34,575 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:34], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. -2021-01-25 17:27:35,376 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:35,377 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:35,379 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:35,380 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:27:35,479 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:35,482 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:37,305 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:37,307 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:37,308 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:37,309 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:27:37,430 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:37,432 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:37], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:47,267 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:47,269 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:47,270 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:47,271 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:27:47,367 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:47,369 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:47], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,204 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:52,207 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,208 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:27:52,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:27:52,220 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:27:52,222 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:27:52,235 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,237 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:27:52,238 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:27:52,242 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,243 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:27:52,244 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:27:52,247 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,248 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:27:52,249 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:27:52,250 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,251 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:27:52,252 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:27:52,255 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,256 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:27:52,357 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:52,360 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[127.0.0.1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:52,368 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:52,370 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:54,976 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:54,977 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:54,982 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:54,984 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:27:55,089 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:27:55,091 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:27:55], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:07,855 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 14904 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:29:07,858 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:29:07,888 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:29:07,889 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:29:08,348 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:29:08,349 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:29:08,359 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:29:08,363 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:29:08,364 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:29:08,367 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:29:08,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:29:08,377 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:29:08,386 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 17:29:08,542 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:29:08,585 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:29:08,586 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:29:08,587 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:29:08,616 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:29:08,770 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:29:08,772 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:29:08,983 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:29:08,989 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:29:08,990 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:29:08,990 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:29:09,106 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:29:09,106 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1216 ms -2021-01-25 17:29:09,755 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:29:09,817 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:29:11,427 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:29:11,428 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:29:11,428 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:29:11,668 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:29:11,682 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:29:11,690 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:29:11,699 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.218 seconds (JVM running for 5.17) -2021-01-25 17:29:34,671 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:29:34,672 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:29:34,673 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms -2021-01-25 17:29:34,684 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:34,697 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:29:34,815 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:29:34,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:34,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:29:34,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:29:34,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:29:34,877 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:29:34,891 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:34,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:29:34,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:29:34,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:34,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:29:34,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:29:34,904 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:34,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:29:34,908 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:29:34,910 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:34,913 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:29:34,914 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:29:34,918 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:34,920 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:29:35,474 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:35,478 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:35,480 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:35,482 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:35], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:37,846 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:37,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:37,850 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:37,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:37], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:29:38,582 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:38,585 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:38,598 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:38,601 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:38], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:40,546 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:40,549 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:40,551 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:40,552 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:29:40,654 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:40,658 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:40], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:44,768 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:44,771 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:44,774 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:29:44,775 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:29:44,874 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:29:44,876 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:29:44], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:30:15,707 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:30:15,709 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:30:15,715 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:30:15,716 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 17:30:15,718 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:30:15,719 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:30:15,720 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:30:15,722 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:30:15,999 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:30:16,002 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:30:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,009 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:32:30,011 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,012 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:32:30,017 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:32:30,021 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:32:30,022 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:32:30,025 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,027 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:32:30,028 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:32:30,031 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,033 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:32:30,034 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:32:30,037 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,038 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:32:30,039 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:32:30,041 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,042 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:32:30,043 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:32:30,046 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,048 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:32:30,293 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:32:30,296 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:30,302 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:32:30,304 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:30], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:31,647 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:32:31,651 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:31,653 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:32:31,654 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 17:32:31,656 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:31,657 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:31,658 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:31,659 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:31,767 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:32:31,770 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:31], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,271 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:32:33,273 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,275 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:32:33,276 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 17:32:33,277 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,278 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,279 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,281 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,282 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,284 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:33,389 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:32:33,391 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:32:33], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:32:39,562 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26132 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:32:39,564 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:32:39,601 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:32:39,601 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:32:40,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:32:40,065 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:32:40,075 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:32:40,077 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:32:40,078 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:32:40,082 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:32:40,091 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:32:40,092 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:32:40,103 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. -2021-01-25 17:32:40,256 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:32:40,299 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:32:40,300 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:32:40,301 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:32:40,331 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:32:40,483 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:32:40,485 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:32:40,693 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:32:40,701 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:32:40,812 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:32:40,812 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1210 ms -2021-01-25 17:32:41,430 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:32:41,492 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:32:44,093 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:32:44,339 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:32:44,353 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:32:44,362 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:32:44,371 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.147 seconds (JVM running for 6.1) -2021-01-25 17:33:12,570 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:33:12,570 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:33:12,571 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms -2021-01-25 17:33:12,583 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:12,595 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:33:12,712 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:33:12,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:12,760 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:33:12,765 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 17:33:12,770 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:12,773 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:12,777 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:12,780 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:12,784 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:12,786 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:12], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:13,381 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:13,387 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:13], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:14,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:14,378 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:14,384 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:14,387 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:14,609 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:14,613 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:14], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:31,942 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 25756 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) -2021-01-25 17:33:31,946 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default -2021-01-25 17:33:31,999 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable -2021-01-25 17:33:32,000 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' -2021-01-25 17:33:32,672 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:33:32,674 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:33:32,687 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. -2021-01-25 17:33:32,690 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:33:32,691 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. -2021-01-25 17:33:32,696 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. -2021-01-25 17:33:32,707 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! -2021-01-25 17:33:32,708 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. -2021-01-25 17:33:32,720 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. -2021-01-25 17:33:32,896 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances -2021-01-25 17:33:32,944 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy -2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:33:32,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper -2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper -2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:33:32,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper -2021-01-25 17:33:32,980 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter -2021-01-25 17:33:33,149 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver -2021-01-25 17:33:33,151 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector -2021-01-25 17:33:33,382 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) -2021-01-25 17:33:33,389 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] -2021-01-25 17:33:33,390 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] -2021-01-25 17:33:33,390 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] -2021-01-25 17:33:33,504 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext -2021-01-25 17:33:33,504 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1503 ms -2021-01-25 17:33:34,277 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' -2021-01-25 17:33:34,355 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index -2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 -2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 -2021-01-25 17:33:37,106 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 -2021-01-25 17:33:37,333 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 -2021-01-25 17:33:37,347 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] -2021-01-25 17:33:37,355 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' -2021-01-25 17:33:37,363 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.015 seconds (JVM running for 6.951) -2021-01-25 17:33:45,832 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' -2021-01-25 17:33:45,832 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' -2021-01-25 17:33:45,833 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms -2021-01-25 17:33:45,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:45,859 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... -2021-01-25 17:33:45,976 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. -2021-01-25 17:33:46,004 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:46,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:33:46,031 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 17:33:46,035 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:46,037 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:46,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:46,040 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:46,042 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:46,044 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:46,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:46,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:46], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,548 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:52,550 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,552 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:33:52,554 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.MessageService.findLetters]. -2021-01-25 17:33:52,557 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,559 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,561 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,563 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,565 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,566 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:52,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:52,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:52], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:54,022 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:54,025 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:54,028 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:54,031 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:33:54,871 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:54,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:54], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:58,084 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:58,087 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:58,090 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:33:58,092 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:33:58,416 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:33:58,420 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:33:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:03,365 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:03,367 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:03,369 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:03,370 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:34:03,623 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:03,626 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:03], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:05,746 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:05,748 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:05,749 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:05,750 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:05], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:34:06,022 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:06,026 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:06], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,660 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:21,662 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,663 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:34:21,668 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:34:21,673 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:21,674 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:21,689 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,690 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:21,691 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:21,694 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,695 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:21,697 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:21,701 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,702 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:21,704 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:21,705 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,706 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:21,707 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:21,711 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,712 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:21,815 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:21,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:21,827 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:21,829 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:21], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,543 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:23,546 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,547 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 17:34:23,552 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 17:34:23,555 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,556 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,558 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,560 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,561 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,562 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,563 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,564 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,565 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,567 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,568 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,570 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,571 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,572 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,573 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,574 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,575 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,576 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,577 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,578 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:23,681 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:23,685 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:23,695 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:23,697 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:23], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,078 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:25,079 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,081 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:34:25,084 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:34:25,089 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:25,091 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:25,094 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,095 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:25,097 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:25,101 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,103 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:25,104 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:25,106 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,107 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:25,108 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:25,110 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,111 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:34:25,112 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:25,115 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,116 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:34:25,212 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:25,215 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:25,222 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:25,225 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:25], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:26,356 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:26,358 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:26,359 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:26,360 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. -2021-01-25 17:34:26,460 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:26,463 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:26], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,029 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:58,031 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,032 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 17:34:58,033 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 17:34:58,037 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,038 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,039 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,040 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,041 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,044 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,045 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,046 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,048 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,049 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,051 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,051 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,053 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,054 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,055 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,057 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,058 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,060 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:34:58,289 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:58,291 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:34:58,302 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:34:58,304 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:34:58], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:36:24,625 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:36:24,627 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:36:24,691 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:36:24,694 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:36:24], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,845 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:15,848 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,850 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. -2021-01-25 17:39:15,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. -2021-01-25 17:39:15,853 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,854 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,856 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,857 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,858 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,861 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,864 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,866 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,868 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,871 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,872 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,873 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,874 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,875 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,876 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:15,876 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:15,877 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. -2021-01-25 17:39:16,154 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:16,156 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,160 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:16,161 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,849 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:16,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,852 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:39:16,855 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:39:16,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:39:16,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:39:16,864 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,865 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:39:16,866 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:39:16,869 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,870 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:39:16,871 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:39:16,874 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,875 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:39:16,877 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:39:16,878 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,879 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:39:16,880 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:39:16,883 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,884 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:39:16,984 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:16,985 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:16,991 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:16,993 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:19,706 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:19,707 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:39:19,720 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:39:19,721 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:39:19], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:15,843 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:40:15,845 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:15,847 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findConversationCout]. -2021-01-25 17:40:15,850 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findConversations]. -2021-01-25 17:40:15,853 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:40:15,854 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:40:15,857 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:15,859 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:40:15,861 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:40:15,864 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:15,865 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:40:15,866 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:40:15,868 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:15,869 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:40:15,870 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:40:15,871 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:15,872 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterCount]. -2021-01-25 17:40:15,873 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:40:15,877 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:15,878 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:15], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. -2021-01-25 17:40:16,109 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:40:16,111 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:16,118 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. -2021-01-25 17:40:16,119 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:40] 用户[0:0:0:0:0:0:0:1], 在[2021-01-25 17:40:16], 访问了[com.greate.community.service.UserService.findUserById]. -2021-01-25 17:40:46,940 INFO [lettuce-nioEventLoop-4-1] i.l.c.p.CommandHandler [AbstractInternalLogger.java:217] null Unexpected exception during request: java.io.IOException: 远程主机强迫关闭了一个现有的连接。 -java.io.IOException: 远程主机强迫关闭了一个现有的连接。 - at sun.nio.ch.SocketDispatcher.read0(Native Method) - at sun.nio.ch.SocketDispatcher.read(SocketDispatcher.java:43) - at sun.nio.ch.IOUtil.readIntoNativeBuffer(IOUtil.java:223) - at sun.nio.ch.IOUtil.read(IOUtil.java:192) - at sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:380) - at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:253) - at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1134) - at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:350) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:719) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:655) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:581) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:493) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:989) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.lang.Thread.run(Thread.java:748) -2021-01-25 17:40:47,037 INFO [lettuce-eventExecutorLoop-1-12] i.l.c.p.ConnectionWatchdog [AbstractInternalLogger.java:171] Reconnecting, last destination was localhost/127.0.0.1:6379 +2021-01-28 15:44:12,402 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26468 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 15:44:12,413 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 15:44:12,473 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 15:44:12,473 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 15:44:13,341 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 15:44:13,343 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 15:44:13,359 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 15:44:13,362 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 15:44:13,362 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 15:44:13,368 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 15:44:13,380 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 15:44:13,381 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 15:44:13,395 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-28 15:44:13,614 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 15:44:13,670 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 15:44:13,671 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 15:44:13,672 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 15:44:13,672 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 15:44:13,673 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 15:44:13,673 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 15:44:13,673 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 15:44:13,674 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 15:44:13,718 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 15:44:13,969 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 15:44:13,971 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 15:44:14,304 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 15:44:14,314 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 15:44:14,314 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 15:44:14,315 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 15:44:14,473 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 15:44:14,473 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1998 ms +2021-01-28 15:44:15,586 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 15:44:15,674 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 15:44:18,497 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 15:44:18,497 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 15:44:18,497 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 15:44:18,717 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 15:44:18,780 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 15:44:18,827 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 15:44:18,828 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 15:44:18,828 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611819858826 +2021-01-28 15:44:18,830 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 15:44:18,834 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 15:44:18,838 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 15:44:18,848 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 15:44:18,857 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 7.122 seconds (JVM running for 8.548) +2021-01-28 15:44:19,225 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 15:44:19,227 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 15:44:19,230 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 15:44:19,252 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 15:44:19,252 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 15:44:19,326 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 5: {consumer-test-consumer-group-1-e915dc84-63fb-4d9c-a658-f532779d32bd=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 15:44:19,357 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 5 +2021-01-28 15:44:19,359 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 15:44:19,361 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 15:44:19,371 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:1349] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Found no committed offset for partition comment-0 +2021-01-28 15:44:19,372 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:1349] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Found no committed offset for partition like-0 +2021-01-28 15:44:19,372 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:1349] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Found no committed offset for partition follow-0 +2021-01-28 15:44:19,382 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.SubscriptionState [SubscriptionState.java:397] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Resetting offset for partition comment-0 to offset 0. +2021-01-28 15:44:19,382 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.SubscriptionState [SubscriptionState.java:397] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Resetting offset for partition like-0 to offset 0. +2021-01-28 15:44:19,382 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.SubscriptionState [SubscriptionState.java:397] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Resetting offset for partition follow-0 to offset 0. +2021-01-28 15:44:19,383 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 15:55:34,417 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 19700 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 15:55:34,419 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 15:55:34,456 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 15:55:34,456 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 15:55:35,059 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 15:55:35,061 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 15:55:35,079 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 13 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 15:55:35,082 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 15:55:35,083 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 15:55:35,088 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 15:55:35,098 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 15:55:35,099 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 15:55:35,112 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-28 15:55:35,292 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 15:55:35,331 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 15:55:35,332 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 15:55:35,332 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 15:55:35,333 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 15:55:35,333 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 15:55:35,333 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 15:55:35,333 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 15:55:35,333 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 15:55:35,364 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 15:55:35,526 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 15:55:35,528 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 15:55:35,756 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 15:55:35,762 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 15:55:35,763 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 15:55:35,763 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 15:55:35,871 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 15:55:35,871 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1412 ms +2021-01-28 15:55:36,623 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 15:55:36,705 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 15:55:38,399 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 15:55:38,399 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 15:55:38,400 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 15:55:38,601 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 15:55:38,660 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 15:55:38,702 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 15:55:38,702 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 15:55:38,702 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611820538701 +2021-01-28 15:55:38,704 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 15:55:38,709 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 15:55:38,712 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 15:55:38,721 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 15:55:38,730 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.743 seconds (JVM running for 5.591) +2021-01-28 15:55:38,999 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 15:55:39,000 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 15:55:39,003 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 15:55:39,012 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 15:55:39,012 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 15:55:39,016 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 7: {consumer-test-consumer-group-1-273d9b12-72ab-43c8-95cb-32b834b727e0=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 15:55:39,019 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 7 +2021-01-28 15:55:39,020 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 15:55:39,022 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 15:55:39,029 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 15:55:39,029 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 15:55:39,029 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 15:55:39,030 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 15:55:51,907 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 15:55:51,907 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 15:55:51,908 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-28 15:56:32,395 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.login]. +2021-01-28 15:56:32,411 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 15:56:32,548 INFO [http-nio-8080-exec-9] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 15:56:32,632 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:56:32,646 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,657 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 15:56:32,678 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 15:56:32,683 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,687 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,692 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,694 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,695 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,699 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,699 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,700 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,701 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,702 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,703 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,704 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,705 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,707 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,708 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,709 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,709 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,710 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,711 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,714 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:32,839 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:56:32,842 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:32,849 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:56:32,852 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,132 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:56:35,134 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,140 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 15:56:35,142 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,144 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,145 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,146 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:56:35,153 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,156 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,156 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,157 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:56:35,159 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,160 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,160 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,161 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,161 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,162 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,162 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,163 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,164 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,164 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,165 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 15:56:35,166 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,167 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,168 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,169 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:56:35,171 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,171 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,172 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,172 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 15:56:35,174 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,177 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,178 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,178 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:56:35,180 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 15:56:35,181 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,184 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,185 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,185 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:56:35,186 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 15:56:35,187 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:56:35,188 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:56:35,189 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:56:35,189 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:56:35,190 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 15:56:35,308 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:56:35,309 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:56:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:05,927 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:05,928 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:05,929 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 15:57:05,931 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:05,931 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:57:05,932 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:57:05,932 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:57:06,178 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:06,179 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:06,184 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:06,185 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:07,376 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:07,377 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:07,379 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:07], 访问了[com.greate.community.service.LikeService.like]. +2021-01-28 15:57:07,410 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:57:07,410 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:57:07,473 INFO [http-nio-8080-exec-1] o.a.k.c.p.ProducerConfig [AbstractConfig.java:354] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.dns.lookup = use_all_dns_ips + client.id = producer-1 + compression.type = none + connections.max.idle.ms = 540000 + delivery.timeout.ms = 120000 + enable.idempotence = false + interceptor.classes = [] + internal.auto.downgrade.txn.commit = true + key.serializer = class org.apache.kafka.common.serialization.StringSerializer + linger.ms = 0 + max.block.ms = 60000 + max.in.flight.requests.per.connection = 5 + max.request.size = 1048576 + metadata.max.age.ms = 300000 + metadata.max.idle.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner + receive.buffer.bytes = 32768 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retries = 2147483647 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + transaction.timeout.ms = 60000 + transactional.id = null + value.serializer = class org.apache.kafka.common.serialization.StringSerializer + +2021-01-28 15:57:07,487 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 15:57:07,487 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 15:57:07,487 INFO [http-nio-8080-exec-1] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611820627486 +2021-01-28 15:57:07,491 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:279] [Producer clientId=producer-1] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 15:57:09,514 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:09,516 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:09,516 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 15:57:09,518 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:09,519 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:57:09,519 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:57:09,520 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:57:09,618 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:09,619 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:09,626 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:09,627 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:17,968 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:17,968 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:17,980 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:17], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 15:57:17,987 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:17], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-28 15:57:17,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 15:57:18,011 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:18,012 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:18,013 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 15:57:18,014 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:18,015 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:57:18,015 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:57:18,016 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:57:18,018 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:18,020 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 15:57:18,021 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 15:57:18,021 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 15:57:18,023 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 15:57:18,124 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:18,125 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 15:57:18,133 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 15:57:18,136 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 15:57:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,109 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:06:35,110 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,110 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 16:06:35,113 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 16:06:35,118 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,119 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,119 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,120 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,120 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,121 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,121 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,122 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,123 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,123 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,124 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,124 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,125 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,125 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,126 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,126 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,126 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,127 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,127 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,128 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:35,374 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:06:35,375 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:35,380 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:06:35,381 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:49,939 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:06:49,939 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:49,940 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:49], 访问了[com.greate.community.service.DiscussPostSerivce.addDiscussPost]. +2021-01-28 16:06:51,978 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:06:51,979 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,980 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 16:06:51,981 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 16:06:51,983 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,984 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,986 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,987 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,987 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,988 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,989 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,989 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,990 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,991 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,992 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,993 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,993 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:51,994 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:51,995 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:51], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:06:52,229 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:06:52,230 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:06:52,241 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:52], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:06:52,242 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:06:52], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:13,215 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:07:13,216 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:13,217 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:07:13,220 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:13,220 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:07:13,220 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:07:13,220 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:07:13,455 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:07:13,456 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:24,400 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:07:24,401 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:24,402 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:07:24,405 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-28 16:07:24,411 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:07:24,430 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:07:24,431 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:24,432 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:07:24,433 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:24,434 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:07:24,434 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:07:24,435 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:07:24,436 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:07:24,437 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:07:24,437 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:07:24,438 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:07:24,439 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:07:24,547 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:07:24,548 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:07:24], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:26:44,158 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 19336 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 16:26:44,160 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 16:26:44,193 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 16:26:44,193 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 16:26:44,676 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:26:44,678 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:26:44,689 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 16:26:44,692 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:26:44,692 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:26:44,697 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 16:26:44,706 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:26:44,706 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 16:26:44,717 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-28 16:26:44,874 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 16:26:44,912 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 16:26:44,913 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:26:44,913 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:26:44,914 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:26:44,914 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 16:26:44,914 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:26:44,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:26:44,915 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:26:44,945 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 16:26:45,105 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 16:26:45,107 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 16:26:45,326 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 16:26:45,332 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 16:26:45,333 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 16:26:45,333 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 16:26:45,440 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 16:26:45,440 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1246 ms +2021-01-28 16:26:46,133 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 16:26:46,202 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 16:26:48,826 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 16:26:48,827 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 16:26:48,827 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 16:26:49,026 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 16:26:49,079 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 16:26:49,117 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:26:49,118 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:26:49,118 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611822409117 +2021-01-28 16:26:49,120 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 16:26:49,124 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 16:26:49,127 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 16:26:49,136 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 16:26:49,144 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.315 seconds (JVM running for 6.124) +2021-01-28 16:26:49,411 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:26:49,413 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 16:26:49,416 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:26:49,424 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 16:26:49,424 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:26:49,428 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 9: {consumer-test-consumer-group-1-4df3374e-e293-44b7-97d5-7eaf4916387d=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 16:26:49,432 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 9 +2021-01-28 16:26:49,433 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 16:26:49,435 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 16:26:49,441 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=2, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:26:49,442 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:26:49,442 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:26:49,453 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 16:27:07,594 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 16:27:07,595 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 16:27:07,595 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-28 16:27:07,607 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:08,232 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:08,252 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:08,264 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 16:27:08,381 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 16:27:08,409 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:08,411 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:08,415 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:08,421 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:08,427 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:08,428 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:08,429 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:08,430 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:08,432 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:08,667 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:08,668 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:08,924 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:08,927 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:12,125 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:12,126 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:12,127 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:12,129 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:12,130 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:12,131 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:12,132 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:12,134 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:12,134 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:12,135 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:12,136 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:12,138 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:12,152 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:12,153 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:12,249 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:12,251 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,266 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:14,268 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,269 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 16:27:14,282 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 16:27:14,286 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,288 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,289 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,290 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,292 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,292 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,293 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,294 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,294 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,297 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,297 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,298 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,299 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,300 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,300 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,301 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,301 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,302 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,303 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,303 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:14,404 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:14,406 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:14,419 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:14,421 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:15,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 16:27:15,885 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 16:27:15,889 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,890 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,891 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,893 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,895 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,896 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,897 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,897 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,901 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,901 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:15,903 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:15,996 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:15,998 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:16,004 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:16,004 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,965 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:18,966 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,967 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:18,969 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,970 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,970 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,971 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:18,973 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,973 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,974 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,974 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:18,976 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,978 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,979 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,979 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,980 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,980 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,981 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,981 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,982 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,982 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,983 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:18,986 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,987 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,987 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,988 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:18,989 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,990 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,990 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,991 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:18,992 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,993 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,993 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:18,994 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:18,997 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:18,998 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:18,999 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:18,999 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:19,000 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:19,001 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:19,002 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:19,003 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:19,003 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:19,004 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:19,005 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:19,018 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:19,019 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:19,104 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:19,105 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:25,670 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:25,672 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:25,672 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:25,674 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:25,675 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:25,675 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:25,676 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:25,677 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:25,678 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:25,678 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:25,679 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:25,680 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:25,688 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:25,688 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:25,784 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:25,786 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:28,455 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:28,456 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:28,456 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:28,459 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:28,459 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:28,460 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:28,461 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:28,462 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:28,463 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:28,463 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:28,464 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:28,468 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:28,475 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:28,476 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:28,610 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:28,611 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:33,886 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:33,887 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:33,888 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:33,890 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:33,890 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:33,891 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:33,891 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:33,893 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:33,893 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:33,894 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:33,894 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:33,896 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:33,903 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:33,904 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:33,997 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:33,998 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:35,614 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,615 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:35,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,618 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,618 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,619 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:35,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,623 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,623 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:35,625 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,625 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,626 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,626 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,627 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,628 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,628 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,629 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,630 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,630 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,631 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:35,632 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,633 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,633 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,634 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:35,635 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,635 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,636 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,636 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:35,637 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,638 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,638 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,639 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:35,640 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:35,641 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,641 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,642 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,642 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:35,643 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:35,645 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,646 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:35,647 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:35,647 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:35,648 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:35,656 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:35,657 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:35,739 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:35,740 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:35], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:39,353 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:39,355 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:39,356 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:39,358 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:39,359 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:39,360 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:39,360 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:39,362 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:39,363 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:39,363 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:39,364 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:39,365 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:39,375 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:39,376 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:39,522 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:39,523 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:55,943 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:55,944 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:55,945 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:55,947 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:55,947 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:55,948 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:55,948 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:55,950 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:55,951 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:55,951 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:55,952 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:55,954 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:27:55,960 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:55,961 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:56,202 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:56,203 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:58,428 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:58,429 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:58,430 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:27:58,431 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:58,432 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:27:58,432 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:27:58,433 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:27:58,583 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:58,585 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:27:58,595 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:27:58,596 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:27:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:14,565 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:14,566 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:14,567 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:28:14,568 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:14,569 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:14,569 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:14,570 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:14,572 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:14,573 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:14,573 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:14,574 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:14,576 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:14,582 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:14,582 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:14,820 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:14,821 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,826 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:17,826 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,827 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 16:28:17,828 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 16:28:17,830 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,831 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,831 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,831 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,832 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,832 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,833 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,833 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,834 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,834 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,835 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,835 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,836 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,836 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,837 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,837 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,838 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,838 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,839 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:17,839 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:17,999 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:18,000 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,009 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:18,010 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,892 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:18,893 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,894 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:28:18,896 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,896 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,896 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,897 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:18,898 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,899 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,899 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,899 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:18,901 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,901 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,901 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,902 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,902 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,903 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,904 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,905 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,905 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,906 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,906 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:18,907 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,908 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,908 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,908 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:18,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,910 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,911 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:18,912 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,912 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,912 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,913 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:18,914 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:18,915 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,915 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,915 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,916 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:18,917 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:18,918 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:18,918 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:18,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:18,919 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:18,921 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:18,928 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:18,928 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:19,031 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:19,033 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:30,987 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:30,988 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,915 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:43,916 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,917 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:28:43,919 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,919 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,920 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,920 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:43,922 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,923 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,924 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,925 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:43,927 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,927 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,928 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,928 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,929 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,929 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,929 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,930 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,930 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,930 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,931 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:43,932 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,932 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,933 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,933 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:43,935 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,935 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,936 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,936 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:43,937 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,937 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,938 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,938 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:43,940 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:43,941 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,941 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,942 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,942 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:43,943 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:43,944 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:43,945 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:43,945 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:43,945 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:43,947 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:43,954 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:43,955 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:43], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:44,211 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:44,212 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,596 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:47,597 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,598 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:28:47,599 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,600 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,600 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,600 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:47,603 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,603 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,604 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,605 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:47,606 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,607 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,607 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,607 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,608 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,609 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,609 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,610 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,610 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:47,611 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,612 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,612 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,612 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:47,613 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,614 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,614 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,615 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:47,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,616 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,617 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:47,619 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:47,620 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,621 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:47,623 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:47,624 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,625 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:28:47,625 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:28:47,626 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:28:47,627 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:28:47,633 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:47,634 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:28:47,727 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:28:47,728 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:28:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:31,939 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 28420 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 16:29:31,945 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 16:29:32,027 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 16:29:32,028 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 16:29:33,183 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:29:33,188 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:29:33,241 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 43 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 16:29:33,252 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:29:33,253 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:29:33,275 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 19 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 16:29:33,315 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:29:33,318 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 16:29:33,360 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 17 ms. Found 0 Redis repository interfaces. +2021-01-28 16:29:33,794 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 16:29:33,903 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 16:29:33,906 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:29:33,907 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:29:33,908 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:29:33,908 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 16:29:33,909 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:29:33,909 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:29:33,909 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:29:33,972 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 16:29:34,259 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 16:29:34,261 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 16:29:34,629 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 16:29:34,639 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 16:29:34,640 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 16:29:34,641 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 16:29:34,812 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 16:29:34,813 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2783 ms +2021-01-28 16:29:35,762 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 16:29:35,844 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 16:29:37,563 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 16:29:37,563 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 16:29:37,563 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 16:29:37,762 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 16:29:37,814 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 16:29:37,853 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:29:37,854 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:29:37,854 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611822577853 +2021-01-28 16:29:37,856 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 16:29:37,860 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 16:29:37,863 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 16:29:37,873 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 16:29:37,882 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.526 seconds (JVM running for 7.419) +2021-01-28 16:29:38,144 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:29:38,146 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 16:29:38,149 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:29:38,159 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 16:29:38,159 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:29:38,474 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 10: {consumer-test-consumer-group-1-831adbc8-a367-4ab3-ba70-29e37098df5d=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 16:29:38,478 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 10 +2021-01-28 16:29:38,479 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 16:29:38,482 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 16:29:38,488 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=2, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:29:38,489 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:29:38,489 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:29:38,497 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 16:29:41,396 INFO [http-nio-8080-exec-5] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 16:29:41,397 INFO [http-nio-8080-exec-5] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 16:29:41,399 INFO [http-nio-8080-exec-5] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-28 16:29:43,985 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:43], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:29:44,622 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,637 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 16:29:44,658 INFO [http-nio-8080-exec-4] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 16:29:44,780 INFO [http-nio-8080-exec-4] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 16:29:44,808 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 16:29:44,816 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,817 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,821 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,822 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,823 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,824 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,825 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,825 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,826 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,828 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,829 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,830 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,831 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,832 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,832 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,833 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,834 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,835 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:44,835 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:44,838 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:45,189 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:29:45,191 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:45,202 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:45], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:29:45,203 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:45], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:46,415 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:29:46,416 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:46,421 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:29:46,423 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:46,424 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:46,425 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:46,432 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:46,437 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:46,439 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:46,440 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:46,441 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:46,443 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:29:46,564 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:29:46,566 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:46], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,347 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:29:53,349 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,350 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:29:53,353 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,354 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,354 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,355 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:53,357 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,358 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,359 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,359 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:53,361 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,362 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,363 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,364 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,365 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,365 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,366 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,366 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,367 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,367 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,368 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,369 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:29:53,370 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,371 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,371 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,372 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:53,373 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:29:53,374 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,375 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,376 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,376 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:53,378 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,379 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,380 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,381 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:29:53,382 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,383 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,384 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,384 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:53,386 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:29:53,388 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:29:53,389 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:29:53,390 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:29:53,390 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:29:53,392 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:29:53,501 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:29:53,502 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:29:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:54,929 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:54], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:31:54,930 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:54], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:54,939 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:54], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:31:54,951 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:54], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-28 16:31:55,032 INFO [http-nio-8080-exec-7] o.a.k.c.p.ProducerConfig [AbstractConfig.java:354] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.dns.lookup = use_all_dns_ips + client.id = producer-1 + compression.type = none + connections.max.idle.ms = 540000 + delivery.timeout.ms = 120000 + enable.idempotence = false + interceptor.classes = [] + internal.auto.downgrade.txn.commit = true + key.serializer = class org.apache.kafka.common.serialization.StringSerializer + linger.ms = 0 + max.block.ms = 60000 + max.in.flight.requests.per.connection = 5 + max.request.size = 1048576 + metadata.max.age.ms = 300000 + metadata.max.idle.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner + receive.buffer.bytes = 32768 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retries = 2147483647 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + transaction.timeout.ms = 60000 + transactional.id = null + value.serializer = class org.apache.kafka.common.serialization.StringSerializer + +2021-01-28 16:31:55,045 INFO [http-nio-8080-exec-7] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:31:55,045 INFO [http-nio-8080-exec-7] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:31:55,045 INFO [http-nio-8080-exec-7] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611822715045 +2021-01-28 16:31:55,048 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:279] [Producer clientId=producer-1] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:31:55,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:31:55,084 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,085 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:31:55,086 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,087 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,087 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:31:55,091 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,093 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:31:55,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,098 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,098 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,099 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,099 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,101 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,101 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,102 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:31:55,103 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,104 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,104 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,105 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:31:55,106 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:31:55,107 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,107 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,108 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,108 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:31:55,110 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,110 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,111 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,111 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:31:55,112 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,113 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,113 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,114 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:31:55,115 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:31:55,116 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:31:55,116 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:31:55,117 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:31:55,117 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:31:55,118 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:31:55,403 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:31:55,404 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:31:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:15,516 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 12604 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 16:35:15,523 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 16:35:15,619 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 16:35:15,620 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 16:35:16,546 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:35:16,548 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:35:16,563 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 16:35:16,567 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:35:16,568 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:35:16,574 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 16:35:16,586 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:35:16,588 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 16:35:16,601 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Redis repository interfaces. +2021-01-28 16:35:16,803 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 16:35:16,849 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 16:35:16,850 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:35:16,850 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:35:16,851 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:35:16,851 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 16:35:16,851 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:35:16,852 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:35:16,852 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:35:16,887 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 16:35:17,069 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 16:35:17,071 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 16:35:17,332 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 16:35:17,339 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 16:35:17,340 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 16:35:17,340 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 16:35:17,462 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 16:35:17,462 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1840 ms +2021-01-28 16:35:18,261 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 16:35:18,335 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 16:35:20,014 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 16:35:20,014 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 16:35:20,014 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 16:35:20,216 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 16:35:20,272 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 16:35:20,311 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:35:20,311 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:35:20,311 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611822920310 +2021-01-28 16:35:20,313 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 16:35:20,317 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 16:35:20,320 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 16:35:20,330 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 16:35:20,338 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.956 seconds (JVM running for 8.147) +2021-01-28 16:35:20,620 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:35:20,622 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 16:35:20,625 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:35:20,636 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 16:35:20,637 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:35:20,641 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 12: {consumer-test-consumer-group-1-687be67b-ce51-435b-ac02-f9de6b8db9c7=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 16:35:20,646 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 12 +2021-01-28 16:35:20,647 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 16:35:20,650 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 16:35:20,658 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=3, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:35:20,659 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:35:20,659 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:35:20,670 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 16:35:31,004 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 16:35:31,004 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 16:35:31,005 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-28 16:35:31,017 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:31,656 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,676 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:35:31,688 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 16:35:31,816 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 16:35:31,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,847 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,851 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,857 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:31,864 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,865 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,866 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,868 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:31,870 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,871 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,874 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,876 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,878 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,879 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,879 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,880 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,881 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,882 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,884 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:31,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,887 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,888 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,889 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:31,890 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:31,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,893 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,895 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,895 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:31,898 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:31,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,903 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,903 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,904 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:31,906 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:31,907 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:31,908 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:31,909 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:31,910 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:31,912 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:32,367 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:32,369 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,366 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:39,367 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,376 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:35:39,386 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-28 16:35:39,392 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:35:39,460 INFO [http-nio-8080-exec-4] o.a.k.c.p.ProducerConfig [AbstractConfig.java:354] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.dns.lookup = use_all_dns_ips + client.id = producer-1 + compression.type = none + connections.max.idle.ms = 540000 + delivery.timeout.ms = 120000 + enable.idempotence = false + interceptor.classes = [] + internal.auto.downgrade.txn.commit = true + key.serializer = class org.apache.kafka.common.serialization.StringSerializer + linger.ms = 0 + max.block.ms = 60000 + max.in.flight.requests.per.connection = 5 + max.request.size = 1048576 + metadata.max.age.ms = 300000 + metadata.max.idle.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner + receive.buffer.bytes = 32768 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retries = 2147483647 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + transaction.timeout.ms = 60000 + transactional.id = null + value.serializer = class org.apache.kafka.common.serialization.StringSerializer + +2021-01-28 16:35:39,473 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:35:39,474 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:35:39,474 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611822939473 +2021-01-28 16:35:39,477 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:279] [Producer clientId=producer-1] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:35:39,510 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:39,511 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,512 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:35:39,514 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,516 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,516 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,517 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:39,520 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,521 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,521 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,522 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:39,525 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,525 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,526 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,526 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,527 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,528 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,528 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,529 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,529 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,530 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,531 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,531 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,532 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,532 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,533 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,533 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:39,535 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,535 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,536 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,536 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:39,538 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:39,539 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,540 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,540 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,541 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:39,542 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,543 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,543 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,544 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:39,546 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,546 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,547 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,547 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:39,550 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:39,551 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:39,552 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:39,553 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:39,553 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:39,555 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:39,668 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:39,669 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:39], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,119 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:42,120 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,121 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:35:42,123 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,123 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:42,124 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:42,124 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:42,127 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,128 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:42,129 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:42,130 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:42,132 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:42,133 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,134 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:42,134 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:42,134 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:42,136 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:42,137 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,138 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:42,138 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:42,139 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:42,141 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,143 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:42,143 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:42,144 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,145 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:42,146 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:42,146 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:42,148 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,148 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:35:42,149 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:35:42,149 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:35:42,151 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:35:42,252 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:42,254 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:35:42,268 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:35:42,269 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:35:42], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:38:23,796 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 12204 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 16:38:23,801 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 16:38:23,889 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 16:38:23,890 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 16:38:25,009 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:38:25,013 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:38:25,045 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 22 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 16:38:25,055 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:38:25,057 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:38:25,070 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 12 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 16:38:25,095 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:38:25,098 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 16:38:25,127 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 11 ms. Found 0 Redis repository interfaces. +2021-01-28 16:38:25,585 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 16:38:25,665 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 16:38:25,667 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:38:25,667 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:38:25,668 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:38:25,669 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 16:38:25,669 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:38:25,669 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:38:25,670 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:38:25,737 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 16:38:26,067 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 16:38:26,070 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 16:38:26,417 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 16:38:26,425 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 16:38:26,426 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 16:38:26,426 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 16:38:26,569 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 16:38:26,570 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2678 ms +2021-01-28 16:38:27,501 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 16:38:27,581 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 16:38:29,293 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 16:38:29,293 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 16:38:29,294 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 16:38:29,491 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 16:38:29,546 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 16:38:29,585 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:38:29,585 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:38:29,585 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611823109584 +2021-01-28 16:38:29,587 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 16:38:29,591 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 16:38:29,594 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 16:38:29,605 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 16:38:29,613 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.524 seconds (JVM running for 8.291) +2021-01-28 16:38:29,870 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:38:29,872 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 16:38:29,875 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:38:29,883 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 16:38:29,884 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:38:29,888 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 14: {consumer-test-consumer-group-1-5bcc2bc3-26f4-4a5c-8a3f-6901b8a91d96=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 16:38:29,892 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 14 +2021-01-28 16:38:29,894 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 16:38:29,896 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 16:38:29,904 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=4, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:38:29,904 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:38:29,905 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:38:29,913 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 16:38:59,602 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 16:38:59,602 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 16:38:59,603 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-28 16:38:59,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:38:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:00,251 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,271 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:39:00,282 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 16:39:00,402 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 16:39:00,430 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,433 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:00,438 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:00,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:00,449 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,451 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:00,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:00,452 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:00,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:00,458 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,459 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:00,460 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:00,461 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:00,463 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:00,464 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:00,467 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:00,468 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:00,470 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,471 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:00,472 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:00,473 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,474 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:00,475 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:00,475 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:00,477 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,478 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:00,478 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:00,479 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:00,481 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:00,951 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:00,952 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:00,960 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:00,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,350 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:05,351 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,361 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:39:05,369 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-28 16:39:05,379 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:39:05,442 INFO [http-nio-8080-exec-5] o.a.k.c.p.ProducerConfig [AbstractConfig.java:354] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.dns.lookup = use_all_dns_ips + client.id = producer-1 + compression.type = none + connections.max.idle.ms = 540000 + delivery.timeout.ms = 120000 + enable.idempotence = false + interceptor.classes = [] + internal.auto.downgrade.txn.commit = true + key.serializer = class org.apache.kafka.common.serialization.StringSerializer + linger.ms = 0 + max.block.ms = 60000 + max.in.flight.requests.per.connection = 5 + max.request.size = 1048576 + metadata.max.age.ms = 300000 + metadata.max.idle.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner + receive.buffer.bytes = 32768 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retries = 2147483647 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + transaction.timeout.ms = 60000 + transactional.id = null + value.serializer = class org.apache.kafka.common.serialization.StringSerializer + +2021-01-28 16:39:05,454 INFO [http-nio-8080-exec-5] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:39:05,455 INFO [http-nio-8080-exec-5] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:39:05,455 INFO [http-nio-8080-exec-5] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611823145454 +2021-01-28 16:39:05,458 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:279] [Producer clientId=producer-1] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:39:05,493 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:05,495 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,497 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:39:05,499 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,501 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,501 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,502 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:05,506 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,507 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,508 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,509 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:05,512 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,512 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,513 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,514 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,517 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,518 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,518 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,519 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,520 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,520 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,521 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,521 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,522 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,523 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,523 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,524 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:05,527 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,528 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,528 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,529 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:05,530 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:05,532 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,532 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,533 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,533 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:05,536 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,537 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,538 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,538 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:05,540 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,541 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,541 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,542 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:05,543 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:05,546 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:05,547 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:05,548 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:05,548 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:05,550 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:05,669 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:05,670 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,038 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:37,039 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,041 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:39:37,045 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-28 16:39:37,064 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:37,065 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,066 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:39:37,068 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,068 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,069 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,069 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:37,071 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,072 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,072 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,073 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:37,074 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,075 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,075 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,076 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,077 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,078 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,079 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,080 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,081 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,082 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,082 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,083 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,083 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,084 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,084 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,084 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,085 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,086 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,086 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,087 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:37,088 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,089 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,089 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,090 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:37,091 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:37,093 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,094 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,095 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,095 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:37,097 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,098 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,099 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,099 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:37,100 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,101 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,101 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,102 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:37,103 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:37,104 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:39:37,105 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:39:37,105 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:39:37,106 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:39:37,107 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:39:37,346 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:39:37,348 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:39:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,836 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:40:07,837 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,839 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:40:07,842 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-28 16:40:07,860 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:40:07,861 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,862 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:40:07,864 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,865 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,865 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,866 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:40:07,870 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,871 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,871 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,872 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:40:07,875 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,875 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,876 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,877 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,877 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,878 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,878 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,879 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,879 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,880 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,880 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,881 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,881 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,881 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,882 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,883 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,884 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,885 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,886 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,887 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,888 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,888 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,889 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,889 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:40:07,891 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,891 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,891 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,892 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:40:07,893 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:40:07,894 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,895 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,896 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,896 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:40:07,898 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,898 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,899 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,899 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:40:07,902 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,902 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,903 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,904 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:40:07,905 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:40:07,906 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:40:07,907 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:40:07,907 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:40:07,908 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:40:07,909 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:07], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:40:08,151 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:40:08,153 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:40:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,886 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:31,887 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,889 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:41:31,893 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-28 16:41:31,911 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:31,912 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,912 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:41:31,914 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,914 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,915 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,915 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:31,917 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,918 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,919 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,920 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:31,922 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,923 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,923 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,924 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,924 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,925 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,925 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,925 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,926 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,926 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,927 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,927 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,928 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,928 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,928 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,929 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,929 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,930 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,930 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,930 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,931 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,931 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,931 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,932 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:31,933 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,934 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,934 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,935 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:31,937 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:31,938 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,939 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,939 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,940 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:31,941 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,941 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,942 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,942 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:31,943 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,944 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,944 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,945 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:31,946 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,946 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,947 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,947 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,947 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:31,948 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:31,949 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:31,949 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:31,950 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:31,951 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:31], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:32,194 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:32], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:32,195 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:32], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,636 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:47,637 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,638 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:41:47,639 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,640 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:47,640 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:47,641 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:47,642 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,643 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:47,644 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:47,644 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:47,646 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:47,647 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,648 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:47,649 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:47,649 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:47,650 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:47,651 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,651 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:47,652 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:47,652 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:47,653 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:47,654 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,655 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:47,655 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:47,656 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:47,657 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:47,658 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:47,658 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:47,659 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:47,659 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:47,660 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:47,896 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:47,897 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,975 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:49,975 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,976 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:41:49,978 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,979 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:49,980 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:49,980 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:49,982 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,983 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:49,983 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:49,983 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:49,985 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:49,985 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,986 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:49,986 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:49,986 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:49,987 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:49,988 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,989 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:49,989 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:49,990 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:49,991 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,991 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:49,992 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:49,992 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,992 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:49,993 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:49,993 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:49,995 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,996 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:49,996 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:49,997 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:49,998 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:49,999 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:49,999 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:49], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:50,000 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:50], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:50,000 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:50], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:50,001 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:50], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:50,105 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:50,106 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:50,119 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:50], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:50,120 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:50], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,056 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:55,056 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,058 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:41:55,061 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-28 16:41:55,083 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:55,083 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,084 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:41:55,085 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,085 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,086 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,086 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:55,087 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,088 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,088 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,089 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:55,090 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,090 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,091 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,091 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,092 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,092 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,092 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,093 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,093 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,093 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,094 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,095 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,096 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,096 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,097 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,097 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,098 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,099 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,099 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,100 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,100 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,100 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,101 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,101 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:55,102 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,103 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,103 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,103 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:55,105 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:55,105 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,106 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,106 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,106 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:55,108 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,108 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,109 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,109 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:55,110 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,110 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,111 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,112 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:55,113 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,114 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,115 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,115 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,116 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:55,117 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:41:55,117 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:41:55,118 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:41:55,118 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:41:55,119 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:41:55,225 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:41:55,226 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:41:55], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,774 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:14,775 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,776 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:42:14,777 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,778 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,778 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,779 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:14,780 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,780 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,781 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,781 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:14,782 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:14,783 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,783 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,784 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,784 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:14,786 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:14,788 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,788 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,789 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,789 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:14,790 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,791 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,791 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,791 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,792 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,792 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,793 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,793 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,793 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,794 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,794 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:14,795 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,795 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,796 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,796 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:14,797 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:14,798 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:14,798 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:14,799 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:14,799 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:14,800 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:14], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:15,036 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:15,038 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:15,047 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:15], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:15,048 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:15], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,443 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:19,443 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,445 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:42:19,450 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentById]. +2021-01-28 16:42:19,468 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:19,469 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,469 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:42:19,471 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,471 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,471 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,472 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:19,473 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,473 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,474 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,474 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:19,475 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,476 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,476 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,477 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,477 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,477 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,478 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,478 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,478 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,479 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,479 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,480 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,481 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,481 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,482 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,482 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,483 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,483 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,483 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,484 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,484 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,484 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,485 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,485 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:19,486 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,487 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,487 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,487 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:19,488 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:19,489 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,490 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,490 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,490 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:19,491 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,492 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,492 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,492 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:19,493 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,494 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,494 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,495 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:19,496 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,496 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,497 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,497 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,498 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:19,499 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:19,499 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:19,500 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:19,500 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:19,501 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:19,603 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:19,603 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,035 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:33,036 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,037 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:42:33,040 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-28 16:42:33,051 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:42:33,068 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:33,068 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,069 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:42:33,070 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,071 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,071 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,072 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:33,074 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,075 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,076 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,076 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:33,078 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,078 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,079 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,079 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,079 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,080 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,080 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,080 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,081 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,082 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,082 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,082 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,083 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,084 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,084 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,084 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,085 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,085 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,085 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,086 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:33,087 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,087 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,088 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:33,090 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:33,091 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,092 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,093 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:33,094 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,095 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,096 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:33,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,097 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,098 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:33,099 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,099 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,100 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:33,101 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:42:33,102 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:42:33,102 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:42:33,103 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:42:33,104 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:42:33,345 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:42:33,347 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:42:33], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:27,053 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 8324 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 16:50:27,055 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 16:50:27,089 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 16:50:27,089 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 16:50:27,564 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:50:27,566 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:50:27,576 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 7 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 16:50:27,579 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:50:27,580 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 16:50:27,584 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 16:50:27,592 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 16:50:27,594 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 16:50:27,604 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-28 16:50:27,755 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 16:50:27,793 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 16:50:27,794 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:50:27,795 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:50:27,795 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:50:27,796 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 16:50:27,796 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 16:50:27,796 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:50:27,796 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 16:50:27,827 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 16:50:27,986 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 16:50:27,988 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 16:50:28,210 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 16:50:28,216 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 16:50:28,217 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 16:50:28,217 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 16:50:28,322 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 16:50:28,322 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1232 ms +2021-01-28 16:50:29,008 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 16:50:29,075 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 16:50:30,701 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 16:50:30,701 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 16:50:30,701 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 16:50:30,902 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 16:50:30,957 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 16:50:30,996 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:50:30,996 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:50:30,996 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611823830995 +2021-01-28 16:50:30,998 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 16:50:31,002 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 16:50:31,006 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 16:50:31,016 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 16:50:31,024 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.317 seconds (JVM running for 5.182) +2021-01-28 16:50:31,290 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:50:31,291 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 16:50:31,293 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:50:31,301 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 16:50:31,301 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 16:50:31,305 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 16: {consumer-test-consumer-group-1-a3e8cb5c-1345-4d0d-988c-b4fa836a8ff8=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 16:50:31,308 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 16 +2021-01-28 16:50:31,309 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 16:50:31,311 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 16:50:31,317 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=11, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:50:31,317 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:50:31,318 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=0, offsetEpoch=Optional.empty, currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 16:50:31,325 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 16:50:57,135 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 16:50:57,135 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 16:50:57,136 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-28 16:50:57,148 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:50:57,811 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:57,829 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:57], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:50:57,842 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 16:50:57,963 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 16:50:57,993 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:57], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:57,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:57], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,000 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,007 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:50:58,013 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,014 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,016 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,017 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:50:58,021 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,022 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,023 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,025 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,026 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,027 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,028 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,030 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,031 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,033 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,034 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,036 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,036 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,037 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,038 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,039 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,040 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,041 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,042 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,042 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,043 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,044 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,045 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,045 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:50:58,049 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,050 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,052 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,053 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:50:58,055 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:50:58,057 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,059 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,060 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,061 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:50:58,063 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,064 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,067 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,069 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:50:58,071 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,072 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,073 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,073 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:50:58,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,076 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:50:58,080 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:50:58,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:50:58,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:50:58,084 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:50:58,086 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:50:58,584 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:50:58,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:50:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,223 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:10,224 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,234 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.addComment]. +2021-01-28 16:51:10,244 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.DiscussPostSerivce.updateCommentCount]. +2021-01-28 16:51:10,250 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:51:10,316 INFO [http-nio-8080-exec-4] o.a.k.c.p.ProducerConfig [AbstractConfig.java:354] ProducerConfig values: + acks = 1 + batch.size = 16384 + bootstrap.servers = [localhost:9092] + buffer.memory = 33554432 + client.dns.lookup = use_all_dns_ips + client.id = producer-1 + compression.type = none + connections.max.idle.ms = 540000 + delivery.timeout.ms = 120000 + enable.idempotence = false + interceptor.classes = [] + internal.auto.downgrade.txn.commit = true + key.serializer = class org.apache.kafka.common.serialization.StringSerializer + linger.ms = 0 + max.block.ms = 60000 + max.in.flight.requests.per.connection = 5 + max.request.size = 1048576 + metadata.max.age.ms = 300000 + metadata.max.idle.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partitioner.class = class org.apache.kafka.clients.producer.internals.DefaultPartitioner + receive.buffer.bytes = 32768 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retries = 2147483647 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + transaction.timeout.ms = 60000 + transactional.id = null + value.serializer = class org.apache.kafka.common.serialization.StringSerializer + +2021-01-28 16:51:10,329 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 16:51:10,329 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 16:51:10,330 INFO [http-nio-8080-exec-4] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611823870328 +2021-01-28 16:51:10,332 INFO [kafka-producer-network-thread | producer-1] o.a.k.c.Metadata [Metadata.java:279] [Producer clientId=producer-1] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 16:51:10,366 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:10,367 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,368 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 16:51:10,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,371 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,372 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,373 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:51:10,377 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,378 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,379 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:51:10,381 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,382 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,383 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,384 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,385 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,386 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,386 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,387 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,387 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,388 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,389 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,390 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,390 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,391 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,392 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,392 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,393 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,394 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,394 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,395 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,395 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:51:10,396 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,397 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,397 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,398 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:51:10,399 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:51:10,400 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,401 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,401 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,401 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:51:10,403 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,403 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,404 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:51:10,407 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,408 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,409 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,409 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:51:10,411 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,412 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,413 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,413 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,414 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:51:10,416 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:10,416 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 16:51:10,417 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 16:51:10,417 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 16:51:10,418 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 16:51:10,667 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:10,668 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:25,897 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:25,898 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:25,899 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:25], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:25,900 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:25], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-28 16:51:25,901 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:25], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-28 16:51:25,904 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:25], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-28 16:51:25,905 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:25], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-28 16:51:26,147 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:26,148 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:27,705 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:27,706 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:27,707 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.FollowService.follow]. +2021-01-28 16:51:27,758 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:27,760 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:27,761 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 16:51:27,762 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-28 16:51:27,763 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-28 16:51:27,763 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-28 16:51:27,764 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-28 16:51:27,865 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 16:51:27,866 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 16:51:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:16,344 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 3396 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 17:54:16,349 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 17:54:16,414 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 17:54:16,414 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 17:54:17,210 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 17:54:17,212 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 17:54:17,225 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 9 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 17:54:17,228 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 17:54:17,229 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 17:54:17,235 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 5 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 17:54:17,245 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 17:54:17,246 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 17:54:17,259 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-28 17:54:17,454 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 17:54:17,506 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 17:54:17,508 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 17:54:17,508 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 17:54:17,509 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 17:54:17,509 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 17:54:17,509 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 17:54:17,510 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 17:54:17,510 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 17:54:17,549 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 17:54:17,751 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 17:54:17,754 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 17:54:18,059 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 17:54:18,067 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 17:54:18,067 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 17:54:18,068 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 17:54:18,200 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 17:54:18,201 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1785 ms +2021-01-28 17:54:19,041 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 17:54:19,119 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 17:54:20,789 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 17:54:20,789 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 17:54:20,789 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 17:54:20,997 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 17:54:21,051 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 17:54:21,092 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 17:54:21,093 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 17:54:21,093 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611827661091 +2021-01-28 17:54:21,095 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 17:54:21,099 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 17:54:21,103 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 17:54:21,113 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 17:54:21,121 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.354 seconds (JVM running for 6.304) +2021-01-28 17:54:21,450 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 17:54:21,451 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 17:54:21,455 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 17:54:21,469 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 17:54:21,469 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 17:54:21,480 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 18: {consumer-test-consumer-group-1-b5287961-fc99-4865-8813-dd33ddf7795b=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 17:54:21,489 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 18 +2021-01-28 17:54:21,491 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 17:54:21,494 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 17:54:21,505 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=12, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 17:54:21,506 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 17:54:21,506 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 17:54:21,517 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 17:54:25,884 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 17:54:25,885 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 17:54:25,886 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-28 17:54:25,897 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:25], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:26,546 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:26,558 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 17:54:26,681 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 17:54:26,736 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:26,740 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:26], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-28 17:54:26,743 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:26], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-28 17:54:26,747 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:26], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-28 17:54:26,748 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:26], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-28 17:54:27,261 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:27,265 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,239 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:28,240 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,243 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 17:54:28,254 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 17:54:28,262 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:54:28,263 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:54:28,277 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,281 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:54:28,283 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:54:28,287 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,290 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:54:28,292 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:54:28,295 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,298 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:54:28,300 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:54:28,301 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,302 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:54:28,305 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:54:28,308 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:54:28,313 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:54:28,429 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:28,431 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:28,442 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:28,444 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:29,165 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:29,167 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:29,169 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:54:29,232 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:29,234 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:54:29,236 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:54:29,237 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:54:29,243 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:29,247 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:54:29,253 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:54:29,258 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:54:29,263 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:29,264 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:54:29,267 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:54:29,272 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:54:29,274 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:54:29,291 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:29,293 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:54:29,430 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:54:29,433 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:54:29], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:01,482 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 16064 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 17:55:01,484 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 17:55:01,515 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 17:55:01,515 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 17:55:02,048 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 17:55:02,049 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 17:55:02,063 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 10 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 17:55:02,066 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 17:55:02,067 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 17:55:02,072 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 17:55:02,083 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 17:55:02,084 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 17:55:02,096 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Redis repository interfaces. +2021-01-28 17:55:02,281 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 17:55:02,332 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 17:55:02,333 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 17:55:02,333 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 17:55:02,334 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 17:55:02,334 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 17:55:02,334 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 17:55:02,334 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 17:55:02,335 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 17:55:02,371 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 17:55:02,549 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 17:55:02,551 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 17:55:02,807 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 17:55:02,814 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 17:55:02,815 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 17:55:02,815 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 17:55:02,945 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 17:55:02,946 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1430 ms +2021-01-28 17:55:03,716 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 17:55:03,784 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 17:55:05,419 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 17:55:05,419 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 17:55:05,419 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 17:55:05,646 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 17:55:05,708 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 17:55:05,754 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 17:55:05,754 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 17:55:05,754 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611827705753 +2021-01-28 17:55:05,756 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 17:55:05,761 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 17:55:05,764 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 17:55:05,775 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 17:55:05,784 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.637 seconds (JVM running for 5.584) +2021-01-28 17:55:06,153 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 17:55:06,155 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 17:55:06,159 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 17:55:06,172 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 17:55:06,172 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 17:55:07,436 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 17:55:07,436 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 17:55:07,438 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-28 17:55:07,459 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:07,509 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 19: {consumer-test-consumer-group-1-89c75a27-b1ca-4838-8e6c-612b9399ca61=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 17:55:07,514 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 19 +2021-01-28 17:55:07,516 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 17:55:07,520 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 17:55:07,531 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=12, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 17:55:07,531 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 17:55:07,531 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 17:55:07,545 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 17:55:08,409 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:08,418 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:08,431 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 17:55:08,568 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 17:55:08,656 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:08,657 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:08,660 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:08,673 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:08,679 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:08,681 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:08,686 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:08,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:08,697 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:08,698 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:08,703 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:08,707 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:08,709 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:09,212 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:09,216 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:18,844 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:18,846 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:18,853 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 17:55:18,858 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 17:55:18,864 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:18,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:18,870 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:18,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:18,874 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:18,878 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:18,880 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:18,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:18,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:18,887 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:18,889 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:18,890 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:18,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:18,893 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:18,897 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:18,899 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:18,900 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:18], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:19,014 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:19,016 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:19,021 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:19,022 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:20,023 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:20,024 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:20,025 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:20,029 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:20,030 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:20,032 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:20,034 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:20,038 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:20,041 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:20,045 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:20,050 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:20,054 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:20,055 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:20,058 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:20,062 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:20,064 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:20,162 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:20,164 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,268 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:21,270 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,271 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 17:55:21,276 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 17:55:21,282 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:21,283 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:21,286 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,287 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:21,288 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:21,292 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,293 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:21,295 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:21,298 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,299 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:21,300 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:21,301 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,302 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:55:21,303 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:21,306 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,308 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:21,309 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:21,410 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:21,412 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:21,418 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:21,420 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:22,236 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:22,237 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:22,238 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:22,240 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:22,241 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:22,244 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:22,245 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:22,250 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:22,251 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:22,255 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:22,259 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:55:22,263 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:55:22,264 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:55:22,267 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:22,270 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:55:22,271 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:55:22,436 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:55:22,437 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:55:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:56:16,813 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:56:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:56:16,814 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:56:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:56:16,828 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:56:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:56:16,829 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:56:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,218 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:09,219 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,220 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 17:57:09,223 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 17:57:09,228 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:57:09,231 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:57:09,234 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,235 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:57:09,236 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:57:09,239 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,240 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:57:09,241 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:57:09,245 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,246 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:57:09,247 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:57:09,248 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,249 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 17:57:09,250 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:57:09,253 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,254 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:57:09,256 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:57:09,500 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:09,503 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:09,504 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:09,506 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:11,555 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:11,556 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:11,611 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:11,612 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:20,373 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:20,374 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:20,375 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:57:20,378 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:20,379 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:57:20,380 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:57:20,382 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:57:20,386 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:20,387 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:57:20,391 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:57:20,396 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 17:57:20,400 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:20,400 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 17:57:20,403 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:57:20,406 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 17:57:20,408 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 17:57:20,688 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:20,689 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:20,747 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:20,748 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:57:20,835 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:57:20,837 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:57:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:58:16,923 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:58:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:58:16,924 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:58:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 17:58:16,986 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:58:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 17:58:16,987 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 17:58:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:01:07,062 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:01:07,063 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:01:07,064 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:01:07,067 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:01:07,067 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:01:07,068 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:01:07,070 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:01:07,075 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:01:07,076 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:01:07,080 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:01:07,084 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:01:07,087 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:01:07,088 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:01:07,092 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:01:07,095 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:01:07,097 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:01:07,379 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:01:07,380 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:01:07,436 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:01:07,437 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:01:07,520 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:01:07,521 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:01:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:03:51,801 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 26436 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 18:03:51,804 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 18:03:51,837 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 18:03:51,838 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 18:03:52,324 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 18:03:52,325 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 18:03:52,336 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 18:03:52,339 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 18:03:52,339 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 18:03:52,344 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 4 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 18:03:52,352 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 18:03:52,353 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 18:03:52,363 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-28 18:03:52,519 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 18:03:52,557 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 18:03:52,559 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 18:03:52,559 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 18:03:52,559 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 18:03:52,560 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 18:03:52,560 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 18:03:52,560 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 18:03:52,560 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 18:03:52,593 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 18:03:52,767 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 18:03:52,770 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 18:03:53,000 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 18:03:53,006 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 18:03:53,007 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 18:03:53,007 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 18:03:53,114 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 18:03:53,115 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1276 ms +2021-01-28 18:03:53,806 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 18:03:53,874 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 18:03:56,503 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 18:03:56,503 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 18:03:56,503 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 18:03:56,736 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 18:03:56,798 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 18:03:56,837 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 18:03:56,838 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 18:03:56,838 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611828236837 +2021-01-28 18:03:56,840 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 18:03:56,844 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 18:03:56,847 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 18:03:56,856 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 18:03:56,864 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 5.419 seconds (JVM running for 6.293) +2021-01-28 18:03:57,149 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 18:03:57,150 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 18:03:57,153 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 18:03:57,160 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 18:03:57,161 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 18:03:57,166 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 21: {consumer-test-consumer-group-1-2abd0854-728c-411d-a6d4-4e2025897954=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 18:03:57,169 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 21 +2021-01-28 18:03:57,170 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 18:03:57,172 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 18:03:57,178 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=12, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 18:03:57,178 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 18:03:57,178 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 18:03:57,187 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 18:03:57,955 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 18:03:57,955 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 18:03:57,956 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 0 ms +2021-01-28 18:03:57,967 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:57], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:03:58,606 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:03:58,616 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:03:58,627 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 18:03:58,748 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 18:03:58,827 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:03:58,829 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:03:58,832 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:03:58,845 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:03:58,850 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:03:58,852 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:03:58,857 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:03:58,862 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:03:58,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:03:58,868 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:03:58,872 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:03:58,876 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:03:58,878 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:58], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:03:59,321 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:03:59,323 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:03:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:00,776 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:00,778 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:00,780 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:00,783 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:00,785 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:00,786 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:00,788 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:00,793 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:00,794 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:00,801 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:00,806 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:00,810 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:00,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:00,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:00,821 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:00,822 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:00,932 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:00,934 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:00], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,466 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:04,468 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,473 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostRows]. +2021-01-28 18:04:04,480 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPosts]. +2021-01-28 18:04:04,483 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,484 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,488 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,489 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,490 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,491 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,493 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,495 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,495 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,498 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,498 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,499 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,500 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,501 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,501 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,502 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,502 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,503 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,504 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,504 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 18:04:04,610 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:04,612 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:04,621 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:04,622 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,706 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:07,707 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,709 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 18:04:07,714 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 18:04:07,718 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:07,720 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:07,723 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,724 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:07,726 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:07,730 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,731 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:07,732 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:07,735 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,736 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:07,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:07,740 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,741 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:07,742 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:07,745 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,746 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:07,747 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:07,893 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:07,895 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:07,912 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:07,914 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:10,434 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:10,435 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:10,435 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:10,438 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:10,439 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:10,440 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:10,441 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:10,447 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:10,448 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:10,452 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:10,456 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:10,461 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:10,462 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:10,465 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:10,468 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:10,470 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:10,572 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:10,573 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,790 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:11,791 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,792 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 18:04:11,796 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 18:04:11,801 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:11,802 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:11,806 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,807 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:11,809 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:11,812 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,813 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:11,814 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:11,817 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,818 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:11,819 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:11,820 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,821 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:11,823 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:11,826 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,827 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:11,828 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:11,927 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:11,928 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:11,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:11,940 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:12,732 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:12,734 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:12,735 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:12,738 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:12,738 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:12,740 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:12,741 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:12,746 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:12,746 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:12,751 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:12,756 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:12,760 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:12,760 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:12,764 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:12,767 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:12,768 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:12,863 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:12,864 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:13,858 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:13,859 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:13,860 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 18:04:13,864 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 18:04:13,868 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:13,870 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:13,873 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:13,874 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:13,875 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:13,878 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:13,879 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:13,880 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:13,883 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:13,885 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:13,886 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:13,888 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:13,888 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:13,889 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:13,892 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:13,893 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:13,894 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:13], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:14,046 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:14,047 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:14,062 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:14,063 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:16,130 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:16,130 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:16,131 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:16,133 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:16,134 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:16,136 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:16,138 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:16,142 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:16,143 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:16,147 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:16,152 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:16,156 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:16,157 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:16,160 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:16,163 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:16,164 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:16,265 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:16,266 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:16], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:17,936 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:17,937 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:17,938 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 18:04:17,941 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 18:04:17,945 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:17,946 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:17,950 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:17,951 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:17,952 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:17,956 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:17,956 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:17,957 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:17,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:17,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:17,963 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:17,964 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:17,964 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 18:04:17,965 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:17,969 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:17,970 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:17,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:18,065 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:18,066 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:18,077 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:18], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:18,078 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:18], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:19,266 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:19,267 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:19,269 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:19,272 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:19,272 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:19,274 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:19,276 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:19,281 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:19,281 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:19,286 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:19,291 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 18:04:19,295 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 18:04:19,296 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 18:04:19,299 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:19,302 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 18:04:19,304 INFO [http-nio-8080-exec-3] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 18:04:19,399 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 18:04:19,401 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 18:04:19], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:40,642 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 1684 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 21:20:40,647 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 21:20:40,710 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 21:20:40,710 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 21:20:41,477 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 21:20:41,480 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 21:20:41,500 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 16 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 21:20:41,505 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 21:20:41,506 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 21:20:41,513 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 21:20:41,530 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 21:20:41,531 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 21:20:41,549 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 6 ms. Found 0 Redis repository interfaces. +2021-01-28 21:20:41,868 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 21:20:41,942 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 21:20:41,944 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 21:20:41,945 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 21:20:41,945 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 21:20:41,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 21:20:41,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 21:20:41,946 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 21:20:41,947 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 21:20:41,998 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 21:20:42,244 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 21:20:42,246 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 21:20:42,539 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 21:20:42,548 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 21:20:42,549 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 21:20:42,549 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 21:20:42,715 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 21:20:42,715 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 2004 ms +2021-01-28 21:20:43,664 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 21:20:43,745 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 21:20:45,569 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 21:20:45,569 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 21:20:45,569 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 21:20:45,872 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 21:20:45,947 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 21:20:46,011 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 21:20:46,012 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 21:20:46,012 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611840046010 +2021-01-28 21:20:46,015 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 21:20:46,020 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 21:20:46,025 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 21:20:46,039 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 21:20:46,051 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 6.055 seconds (JVM running for 7.952) +2021-01-28 21:20:46,417 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 21:20:46,418 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 21:20:46,422 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 21:20:46,437 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 21:20:46,437 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 21:20:46,447 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 23: {consumer-test-consumer-group-1-53a2e7bb-7d9e-48f5-b3aa-673b606a9e30=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 21:20:46,457 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 23 +2021-01-28 21:20:46,459 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 21:20:46,462 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 21:20:46,472 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=12, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 21:20:46,472 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 21:20:46,472 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 21:20:46,484 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 21:20:47,759 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 21:20:47,759 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 21:20:47,762 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 2 ms +2021-01-28 21:20:47,792 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:48,971 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:48], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:48,983 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 21:20:49,124 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 21:20:49,182 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:49,256 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:49,259 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:49,263 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:49,276 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:49,283 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:49,288 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:49,294 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:49,301 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:49,306 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:49,311 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:49,316 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:49,320 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:49,323 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:49,328 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:49,331 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:49,944 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:49,946 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:49], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:51,655 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:51,658 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:51,659 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:51,662 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:51,663 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:51,665 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:51,668 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:51,674 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:51,675 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:51,680 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:51,686 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:51,691 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:51,692 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:51,696 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:51,700 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:51,702 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:51,703 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:51,705 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:51,829 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:51,831 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:51], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,588 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:53,588 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,599 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:53,601 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:20:53,604 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,605 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,607 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,608 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,609 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,611 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,612 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,613 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,617 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:53,617 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-28 21:20:53,626 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:53,627 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:53,741 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:53,743 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,228 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:56,229 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,230 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:56,232 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:20:56,235 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,237 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,238 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,239 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,240 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,241 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,242 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,242 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,243 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,244 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:56,244 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:56,246 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:56,438 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:56,440 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:56], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:59,586 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:59,587 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:59,588 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:59,592 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:59,593 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:59,595 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:59,597 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:59,601 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:59,602 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:59,607 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:59,612 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:20:59,616 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:20:59,617 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:20:59,620 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:59,623 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:59,625 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:59,626 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:20:59,627 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:20:59,722 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:20:59,723 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:20:59], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,977 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:02,978 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,979 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:02,981 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:02,983 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,983 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,984 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,984 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,985 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,986 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,986 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,987 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,987 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,988 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:02,988 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:02,990 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:03,131 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:03], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:03,132 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:03], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,804 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:04,805 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,807 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:04,810 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:04,812 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,815 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,816 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,817 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,818 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,818 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,819 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,819 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,820 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,820 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:04,821 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-28 21:21:04,826 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:04,827 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:05,036 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:05,038 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,543 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:07,544 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,544 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:07,546 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:07,548 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,549 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,550 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,551 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,553 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,554 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,555 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,558 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,559 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,561 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:07,562 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-28 21:21:07,566 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:07,568 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:07,674 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:07,677 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,401 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:09,402 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,403 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:09,405 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:09,408 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,409 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,409 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,412 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,414 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,415 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,415 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,416 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,416 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,417 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:09,417 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-28 21:21:09,422 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:09,423 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:09,525 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:09,526 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,172 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:11,173 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,174 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:11,176 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:11,178 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,179 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,180 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,182 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,183 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,184 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,185 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,185 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,186 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,187 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:11,187 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:11,189 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:11,305 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:11,306 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,721 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:12,722 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,723 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:12,724 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:12,726 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,727 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,728 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,728 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,733 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:12,734 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:12,735 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:12,867 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:12,868 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,002 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:14,003 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,004 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:14,006 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:14,008 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,010 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,011 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,013 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,014 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,017 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,017 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,020 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,020 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,021 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:14,021 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:14,023 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:14,187 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:14,188 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,164 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:17,165 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,167 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:21:17,171 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:21:17,175 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:17,176 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:17,180 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,182 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:17,184 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:17,187 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,187 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:17,188 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:17,191 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,192 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:17,193 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:17,194 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,195 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:17,197 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:17,200 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,202 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:17,203 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:17,205 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:17,206 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:17,453 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:17,454 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:17,468 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:17,469 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:17], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:22,559 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:22,559 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:22,560 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:22,563 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:22,564 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:22,566 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:22,568 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:22,573 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:22,574 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:22,578 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:22,583 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:22,587 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:22,588 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:22,592 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:22,595 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:22,596 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:22,598 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:22,600 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:22,707 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:22,708 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:22], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:26,874 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:26,875 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:26,875 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:21:26,879 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:21:26,884 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:26,885 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:26,888 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:26,889 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:26,890 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:26,893 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:26,893 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:26,895 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:26,898 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:26,899 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:26,900 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:26,901 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:26,902 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:21:26,903 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:26,906 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:26,907 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:26,908 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:26,909 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:26,910 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:26], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:27,014 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:27,016 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:27,021 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:27], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:27,022 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:27], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:28,274 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:28,275 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:28,276 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:28,279 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:28,280 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:28,281 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:28,282 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:28,287 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:28,288 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:28,292 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:28,296 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:28,300 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:28,300 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:28,304 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:28,306 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:28,308 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:28,309 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:28,310 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:28,409 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:28,410 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,245 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:30,247 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,248 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:30,253 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:30,257 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,258 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,259 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,259 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,260 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,260 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,261 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,261 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,262 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,262 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:30,263 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.MessageService.readMessage]. +2021-01-28 21:21:30,267 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:30,268 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:30,377 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:30,378 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:30], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:34,145 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:34,147 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:34,148 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:34,150 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:34,151 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:34,152 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:34,154 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:34,159 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:34,160 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:34,165 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:34,170 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:21:34,173 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:34,174 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:34,177 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:34,181 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:34,182 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:34,184 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:34,185 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:34,421 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:34,422 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:34], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,070 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:36,071 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,071 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:36,075 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:36,080 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,080 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,081 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,082 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,083 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,086 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,086 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,086 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:36,087 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:36,087 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:36,181 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:36,182 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:36], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:37,556 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:37,556 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:37,557 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:37,558 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-28 21:21:37,561 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-28 21:21:37,564 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-28 21:21:37,565 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-28 21:21:37,567 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:37,569 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:37,793 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:37,794 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:37], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,740 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:40,741 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,741 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:40,747 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:40,751 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,752 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,752 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,753 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,753 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,754 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,754 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,754 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,755 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,755 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:40,756 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:40,757 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:40,872 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:40,873 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:40], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,616 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:41,617 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,618 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 21:21:41,621 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,622 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,623 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,624 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:41,628 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,628 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,629 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,629 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:41,631 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:41,632 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,632 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,633 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,633 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:41,635 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,635 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,636 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:41,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,638 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,638 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,639 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:41,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,641 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,641 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,641 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:41,642 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,643 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,643 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,644 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:41,646 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:41,647 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:41,647 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:41,648 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:41,648 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:41,649 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:41,650 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:41,651 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:41,890 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:41,891 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:41], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,375 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:44,376 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,377 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 21:21:44,378 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,379 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,379 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,380 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:44,381 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,381 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,381 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,382 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:44,383 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:44,384 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,384 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,384 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,385 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:44,387 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,388 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,388 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,389 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:44,390 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,390 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,391 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,391 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:44,392 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,393 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,393 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,393 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:44,394 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,395 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,395 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,395 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:44,397 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:44,398 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:44,398 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:44,399 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:44,399 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:44,400 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:44,401 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:44,403 INFO [http-nio-8080-exec-8] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:44,677 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:44,679 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:44], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,666 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:47,667 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,668 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 21:21:47,669 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,670 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,671 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,672 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:47,676 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,676 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,677 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,677 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:47,678 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,679 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,679 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,680 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,680 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,680 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,681 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,681 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,681 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,682 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,682 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:47,683 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,683 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,684 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,684 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:47,685 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,686 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,687 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,687 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:47,688 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,689 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,689 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,689 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:47,691 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:47,692 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,692 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,692 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,693 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:47,694 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:47,695 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:47,695 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:21:47,695 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:21:47,696 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:21:47,697 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:21:47,698 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:47,699 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:47,948 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:47,949 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:47], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,850 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:53,851 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,852 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:21:53,853 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:21:53,856 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,857 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,858 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,858 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,859 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,860 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,861 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:21:53,861 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:21:53,863 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:21:53,956 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:21:53,957 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:21:53], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,254 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:02,255 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,255 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.DiscussPostSerivce.findDiscussPostById]. +2021-01-28 21:22:02,257 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,260 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,261 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,261 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:22:02,263 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,264 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,264 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,265 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:22:02,266 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,266 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,266 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,268 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,268 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,269 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,269 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,270 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,270 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,270 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,271 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,271 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,272 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,272 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,272 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,273 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,273 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,274 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,274 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,275 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,275 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,275 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,276 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,276 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:22:02,278 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,279 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,279 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,279 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:22:02,280 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:22:02,281 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,282 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,282 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,282 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:22:02,283 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,284 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,284 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,284 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:22:02,286 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,286 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,286 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,287 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:22:02,288 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,288 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,289 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,289 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,289 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:22:02,290 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:02,291 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeCount]. +2021-01-28 21:22:02,291 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.LikeService.findEntityLikeStatus]. +2021-01-28 21:22:02,291 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentByEntity]. +2021-01-28 21:22:02,292 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.CommentService.findCommentCount]. +2021-01-28 21:22:02,293 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:02,294 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:02,504 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:02,505 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,717 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:06,717 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,718 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:22:06,721 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:22:06,725 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:06,725 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:06,728 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,729 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:06,732 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:06,735 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,737 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:06,738 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:06,741 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,741 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:06,742 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:06,743 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,744 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:06,745 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:06,749 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,749 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:06,750 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:06,751 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:06,752 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:06,959 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:06,960 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:06,971 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:06,972 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:09,961 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:09,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:09,962 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:22:09,966 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:09,967 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:22:09,968 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:09,969 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:22:09,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:09,974 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:22:09,978 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:09,983 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:22:09,986 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:09,987 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:22:09,990 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:09,993 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:09,994 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:09,995 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:09,996 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:10,128 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:10], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:10,129 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:20,859 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:20,860 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:20,860 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:22:20,864 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:22:20,869 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:20,870 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:20,873 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:20,874 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:20,875 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:20,878 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:20,878 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:20,879 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:20,883 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:20,884 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:20,885 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:20,886 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:20,886 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:22:20,887 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:20,890 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:20,891 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:20,892 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:20,893 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:20,894 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:20], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:21,131 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:21,133 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:21,139 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:21,140 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:21,773 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:21,773 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:21,774 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:22:21,776 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:21,776 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:22:21,777 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:21,778 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:22:21,783 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:21,784 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:22:21,788 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:21,792 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:22:21,795 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:21,796 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:22:21,800 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:21,803 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:21,804 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:21,805 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:21,806 INFO [http-nio-8080-exec-2] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:21,903 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:21,904 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:21], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,001 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:23,002 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,003 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:22:23,005 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:22:23,006 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,007 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,007 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,007 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,008 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,008 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,008 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,009 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,009 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,010 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:22:23,010 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:22:23,011 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:22:23,107 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:22:23,108 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:22:23], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,819 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:23:05,820 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,821 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:23:05,822 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:23:05,824 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,824 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,825 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,825 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,825 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,826 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,826 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,827 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,827 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,827 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:23:05,828 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:23:05,829 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:05], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:23:06,066 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:06], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:23:06,066 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:23:06], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:03,861 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:55] Starting CommunityApplication using Java 1.8.0_172 on LAPTOP-5SJBI05C with PID 29636 (E:\GreateCommunity\target\classes started by 19124 in E:\GreateCommunity) +2021-01-28 21:46:03,863 INFO [restartedMain] c.g.c.CommunityApplication [SpringApplication.java:660] No active profile set, falling back to default profiles: default +2021-01-28 21:46:03,898 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] Devtools property defaults active! Set 'spring.devtools.add-properties' to 'false' to disable +2021-01-28 21:46:03,899 INFO [restartedMain] o.s.b.d.e.DevToolsPropertyDefaultsPostProcessor [DeferredLog.java:255] For additional web related logging consider setting the 'logging.level.web' property to 'DEBUG' +2021-01-28 21:46:04,379 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 21:46:04,380 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Elasticsearch repositories in DEFAULT mode. +2021-01-28 21:46:04,391 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 8 ms. Found 0 Elasticsearch repository interfaces. +2021-01-28 21:46:04,394 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 21:46:04,395 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Reactive Elasticsearch repositories in DEFAULT mode. +2021-01-28 21:46:04,399 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Reactive Elasticsearch repository interfaces. +2021-01-28 21:46:04,408 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:250] Multiple Spring Data modules found, entering strict repository configuration mode! +2021-01-28 21:46:04,409 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:128] Bootstrapping Spring Data Redis repositories in DEFAULT mode. +2021-01-28 21:46:04,418 INFO [restartedMain] o.s.d.r.c.RepositoryConfigurationDelegate [RepositoryConfigurationDelegate.java:188] Finished Spring Data repository scanning in 3 ms. Found 0 Redis repository interfaces. +2021-01-28 21:46:04,571 INFO [restartedMain] c.u.j.c.EnableEncryptablePropertiesBeanFactoryPostProcessor [EnableEncryptablePropertiesBeanFactoryPostProcessor.java:48] Post-processing PropertySource instances +2021-01-28 21:46:04,609 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource configurationProperties [org.springframework.boot.context.properties.source.ConfigurationPropertySourcesPropertySource] to AOP Proxy +2021-01-28 21:46:04,610 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletConfigInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 21:46:04,610 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource servletContextInitParams [org.springframework.core.env.PropertySource$StubPropertySource] to EncryptablePropertySourceWrapper +2021-01-28 21:46:04,610 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemProperties [org.springframework.core.env.PropertiesPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 21:46:04,611 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource systemEnvironment [org.springframework.boot.env.SystemEnvironmentPropertySourceEnvironmentPostProcessor$OriginAwareSystemEnvironmentPropertySource] to EncryptableSystemEnvironmentPropertySourceWrapper +2021-01-28 21:46:04,611 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource random [org.springframework.boot.env.RandomValuePropertySource] to EncryptablePropertySourceWrapper +2021-01-28 21:46:04,611 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource Config resource 'class path resource [application.properties]' via location 'optional:classpath:/' [org.springframework.boot.env.OriginTrackedMapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 21:46:04,611 INFO [restartedMain] c.u.j.EncryptablePropertySourceConverter [EncryptablePropertySourceConverter.java:41] Converting PropertySource devtools [org.springframework.core.env.MapPropertySource] to EncryptableMapPropertySourceWrapper +2021-01-28 21:46:04,642 INFO [restartedMain] c.u.j.f.DefaultLazyPropertyFilter [DefaultLazyPropertyFilter.java:34] Property Filter custom Bean not found with name 'encryptablePropertyFilter'. Initializing Default Property Filter +2021-01-28 21:46:04,799 INFO [restartedMain] c.u.j.r.DefaultLazyPropertyResolver [DefaultLazyPropertyResolver.java:35] Property Resolver custom Bean not found with name 'encryptablePropertyResolver'. Initializing Default Property Resolver +2021-01-28 21:46:04,801 INFO [restartedMain] c.u.j.d.DefaultLazyPropertyDetector [DefaultLazyPropertyDetector.java:33] Property Detector custom Bean not found with name 'encryptablePropertyDetector'. Initializing Default Property Detector +2021-01-28 21:46:05,023 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:108] Tomcat initialized with port(s): 8080 (http) +2021-01-28 21:46:05,029 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Initializing ProtocolHandler ["http-nio-8080"] +2021-01-28 21:46:05,030 INFO [restartedMain] o.a.c.c.StandardService [DirectJDKLog.java:173] Starting service [Tomcat] +2021-01-28 21:46:05,030 INFO [restartedMain] o.a.c.c.StandardEngine [DirectJDKLog.java:173] Starting Servlet engine: [Apache Tomcat/9.0.41] +2021-01-28 21:46:05,136 INFO [restartedMain] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring embedded WebApplicationContext +2021-01-28 21:46:05,137 INFO [restartedMain] o.s.b.w.s.c.ServletWebServerApplicationContext [ServletWebServerApplicationContext.java:289] Root WebApplicationContext: initialization completed in 1238 ms +2021-01-28 21:46:05,832 INFO [restartedMain] o.s.s.c.ThreadPoolTaskExecutor [ExecutorConfigurationSupport.java:181] Initializing ExecutorService 'applicationTaskExecutor' +2021-01-28 21:46:05,902 INFO [restartedMain] o.s.b.a.w.s.WelcomePageHandlerMapping [WelcomePageHandlerMapping.java:57] Adding welcome page template: index +2021-01-28 21:46:07,586 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:62] Version Spring Data Elasticsearch: 4.1.3 +2021-01-28 21:46:07,586 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:63] Version Elasticsearch Client in build: 7.9.3 +2021-01-28 21:46:07,587 INFO [restartedMain] o.s.d.e.s.VersionInfo [VersionInfo.java:64] Version Elasticsearch Client used: 7.9.3 +2021-01-28 21:46:07,824 INFO [restartedMain] o.s.b.d.a.OptionalLiveReloadServer [OptionalLiveReloadServer.java:58] LiveReload server is running on port 35729 +2021-01-28 21:46:07,877 INFO [restartedMain] o.a.k.c.c.ConsumerConfig [AbstractConfig.java:354] ConsumerConfig values: + allow.auto.create.topics = true + auto.commit.interval.ms = 3000 + auto.offset.reset = latest + bootstrap.servers = [localhost:9092] + check.crcs = true + client.dns.lookup = use_all_dns_ips + client.id = consumer-test-consumer-group-1 + client.rack = + connections.max.idle.ms = 540000 + default.api.timeout.ms = 60000 + enable.auto.commit = true + exclude.internal.topics = true + fetch.max.bytes = 52428800 + fetch.max.wait.ms = 500 + fetch.min.bytes = 1 + group.id = test-consumer-group + group.instance.id = null + heartbeat.interval.ms = 3000 + interceptor.classes = [] + internal.leave.group.on.close = true + internal.throw.on.fetch.stable.offset.unsupported = false + isolation.level = read_uncommitted + key.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + max.partition.fetch.bytes = 1048576 + max.poll.interval.ms = 300000 + max.poll.records = 500 + metadata.max.age.ms = 300000 + metric.reporters = [] + metrics.num.samples = 2 + metrics.recording.level = INFO + metrics.sample.window.ms = 30000 + partition.assignment.strategy = [class org.apache.kafka.clients.consumer.RangeAssignor] + receive.buffer.bytes = 65536 + reconnect.backoff.max.ms = 1000 + reconnect.backoff.ms = 50 + request.timeout.ms = 30000 + retry.backoff.ms = 100 + sasl.client.callback.handler.class = null + sasl.jaas.config = null + sasl.kerberos.kinit.cmd = /usr/bin/kinit + sasl.kerberos.min.time.before.relogin = 60000 + sasl.kerberos.service.name = null + sasl.kerberos.ticket.renew.jitter = 0.05 + sasl.kerberos.ticket.renew.window.factor = 0.8 + sasl.login.callback.handler.class = null + sasl.login.class = null + sasl.login.refresh.buffer.seconds = 300 + sasl.login.refresh.min.period.seconds = 60 + sasl.login.refresh.window.factor = 0.8 + sasl.login.refresh.window.jitter = 0.05 + sasl.mechanism = GSSAPI + security.protocol = PLAINTEXT + security.providers = null + send.buffer.bytes = 131072 + session.timeout.ms = 10000 + ssl.cipher.suites = null + ssl.enabled.protocols = [TLSv1.2] + ssl.endpoint.identification.algorithm = https + ssl.engine.factory.class = null + ssl.key.password = null + ssl.keymanager.algorithm = SunX509 + ssl.keystore.location = null + ssl.keystore.password = null + ssl.keystore.type = JKS + ssl.protocol = TLSv1.2 + ssl.provider = null + ssl.secure.random.implementation = null + ssl.trustmanager.algorithm = PKIX + ssl.truststore.location = null + ssl.truststore.password = null + ssl.truststore.type = JKS + value.deserializer = class org.apache.kafka.common.serialization.StringDeserializer + +2021-01-28 21:46:07,915 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:117] Kafka version: 2.6.0 +2021-01-28 21:46:07,915 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:118] Kafka commitId: 62abe01bee039651 +2021-01-28 21:46:07,915 INFO [restartedMain] o.a.k.c.u.AppInfoParser [AppInfoParser.java:119] Kafka startTimeMs: 1611841567914 +2021-01-28 21:46:07,917 INFO [restartedMain] o.a.k.c.c.KafkaConsumer [KafkaConsumer.java:965] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Subscribed to topic(s): comment, like, follow +2021-01-28 21:46:07,922 INFO [restartedMain] o.s.s.c.ThreadPoolTaskScheduler [ExecutorConfigurationSupport.java:181] Initializing ExecutorService +2021-01-28 21:46:07,925 INFO [restartedMain] o.a.c.h.Http11NioProtocol [DirectJDKLog.java:173] Starting ProtocolHandler ["http-nio-8080"] +2021-01-28 21:46:07,934 INFO [restartedMain] o.s.b.w.e.t.TomcatWebServer [TomcatWebServer.java:220] Tomcat started on port(s): 8080 (http) with context path '/echo' +2021-01-28 21:46:07,942 INFO [restartedMain] c.g.c.CommunityApplication [StartupInfoLogger.java:61] Started CommunityApplication in 4.425 seconds (JVM running for 5.267) +2021-01-28 21:46:08,216 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.Metadata [Metadata.java:279] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Cluster ID: HpZkkZsDTRe8NRrfxt7E8w +2021-01-28 21:46:08,217 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Discovered group coordinator LAPTOP-5SJBI05C:9092 (id: 2147483647 rack: null) +2021-01-28 21:46:08,220 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 21:46:08,228 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:456] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Join group failed with org.apache.kafka.common.errors.MemberIdRequiredException: The group member needs to have a valid member id before actually entering a consumer group. +2021-01-28 21:46:08,228 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:553] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] (Re-)joining group +2021-01-28 21:46:08,232 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:627] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Finished assignment for group at generation 25: {consumer-test-consumer-group-1-a09c3689-429f-4aa9-9c51-75909a980abd=Assignment(partitions=[like-0, comment-0, follow-0])} +2021-01-28 21:46:08,236 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.AbstractCoordinator [AbstractCoordinator.java:504] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Successfully joined group with generation 25 +2021-01-28 21:46:08,237 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:276] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Notifying assignor about the new Assignment(partitions=[like-0, comment-0, follow-0]) +2021-01-28 21:46:08,239 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:288] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Adding newly assigned partitions: comment-0, like-0, follow-0 +2021-01-28 21:46:08,245 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition comment-0 to the committed offset FetchPosition{offset=12, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 21:46:08,246 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition like-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 21:46:08,246 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.c.i.ConsumerCoordinator [ConsumerCoordinator.java:815] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Setting offset for partition follow-0 to the committed offset FetchPosition{offset=1, offsetEpoch=Optional[0], currentLeader=LeaderAndEpoch{leader=Optional[LAPTOP-5SJBI05C:9092 (id: 0 rack: null)], epoch=0}} +2021-01-28 21:46:08,253 INFO [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.s.k.l.KafkaMessageListenerContainer [LogAccessor.java:292] test-consumer-group: partitions assigned: [comment-0, like-0, follow-0] +2021-01-28 21:46:09,890 INFO [http-nio-8080-exec-1] o.a.c.c.C.[.[.[/echo] [DirectJDKLog.java:173] Initializing Spring DispatcherServlet 'dispatcherServlet' +2021-01-28 21:46:09,890 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:525] Initializing Servlet 'dispatcherServlet' +2021-01-28 21:46:09,891 INFO [http-nio-8080-exec-1] o.s.w.s.DispatcherServlet [FrameworkServlet.java:547] Completed initialization in 1 ms +2021-01-28 21:46:09,902 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:46:10,515 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:10,529 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:46:10,541 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:110] HikariPool-1 - Starting... +2021-01-28 21:46:10,660 INFO [http-nio-8080-exec-1] c.z.h.HikariDataSource [HikariDataSource.java:123] HikariPool-1 - Start completed. +2021-01-28 21:46:10,690 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:46:10,698 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:46:10,700 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:10,712 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:10,714 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:46:10,715 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:10,719 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:10,721 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:46:10,722 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:10,726 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:10,728 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:46:10,729 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:10,731 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:10,732 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:46:10,734 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:10,737 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:10,739 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:10,741 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:46:10,745 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:10,747 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:10], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:46:11,208 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:46:11,211 INFO [http-nio-8080-exec-10] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:11,217 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:11], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:46:11,218 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:11], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:14,788 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:46:14,789 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:14,793 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:46:14,796 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-28 21:46:14,799 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:14,800 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:14,802 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:14,804 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:46:14,804 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:46:14,806 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:46:14,915 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:46:14,919 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:46:14], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:07,938 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:47:07,939 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:07,940 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:07], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:47:07,995 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:07,998 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:07], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:47:08,000 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:47:08,001 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:47:08,007 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:08,008 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:47:08,012 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:47:08,017 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findLatestNotice]. +2021-01-28 21:47:08,021 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:08,022 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:47:08,025 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:47:08,028 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:47:08,029 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:47:08,031 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:47:08,032 INFO [http-nio-8080-exec-4] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:47:08,280 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:47:08,282 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:08], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,620 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:47:09,621 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,623 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.MessageService.findNoticeCount]. +2021-01-28 21:47:09,627 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.MessageService.findNotices]. +2021-01-28 21:47:09,630 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,631 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,632 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,633 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,634 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,635 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,635 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,636 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,637 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,638 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:47:09,638 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:47:09,640 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:47:09,748 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:47:09,749 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:47:09], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,195 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:57:28,197 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,199 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:57:28,204 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:57:28,209 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:57:28,211 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:57:28,216 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,217 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:57:28,218 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:57:28,221 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,222 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:57:28,223 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:57:28,226 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,229 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:57:28,230 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:57:28,232 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,234 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:57:28,235 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:57:28,238 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,239 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:57:28,241 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:57:28,243 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:57:28,244 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:57:28,630 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:57:28,632 INFO [http-nio-8080-exec-7] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:57:28,650 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:57:28,652 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:57:28], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:58:12,415 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:58:12,417 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:58:12,418 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:58:12,421 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.MessageService.findLetters]. +2021-01-28 21:58:12,422 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:58:12,423 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:58:12,424 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:58:12,424 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:58:12,425 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:58:12,427 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:58:12,665 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:58:12,666 INFO [http-nio-8080-exec-5] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:58:12], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,388 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:02,390 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,391 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:59:02,395 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:59:02,400 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:02,401 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:02,404 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,405 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:02,406 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:02,410 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,411 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:02,413 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:02,416 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,417 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:02,418 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:02,419 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,420 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:02,421 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:02,424 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,424 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:02,426 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:59:02,427 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:02,428 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:59:02,531 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:02,533 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:02,539 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:02,541 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:02], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:04,594 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:04,595 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:04,597 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:04,597 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.LikeService.findUserLikeCount]. +2021-01-28 21:59:04,600 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.FollowService.findFolloweeCount]. +2021-01-28 21:59:04,604 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.FollowService.findFollowerCount]. +2021-01-28 21:59:04,605 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.FollowService.hasFollowed]. +2021-01-28 21:59:04,613 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:04,615 INFO [http-nio-8080-exec-1] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:59:04,719 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:04,721 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:04], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,496 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:07,497 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,498 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findConversationCout]. +2021-01-28 21:59:07,502 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findConversations]. +2021-01-28 21:59:07,506 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:07,507 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:07,511 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,512 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:07,513 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:07,516 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,517 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:07,518 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:07,521 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,521 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:07,523 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:07,524 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,524 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterCount]. +2021-01-28 21:59:07,526 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:07,530 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,531 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:07,532 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:59:07,533 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findLetterUnreadCount]. +2021-01-28 21:59:07,534 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.MessageService.findNoticeUnReadCount]. +2021-01-28 21:59:07,640 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:07,641 INFO [http-nio-8080-exec-9] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. +2021-01-28 21:59:07,651 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findLoginTicket]. +2021-01-28 21:59:07,652 INFO [http-nio-8080-exec-6] c.g.c.a.ServiceLogAspect [ServiceLogAspect.java:43] 用户[0:0:0:0:0:0:0:1], 在[2021-01-28 21:59:07], 访问了[com.greate.community.service.UserService.findUserById]. diff --git a/log/community/log_warn.log b/log/community/log_warn.log index 88b00373..ce961b92 100644 --- a/log/community/log_warn.log +++ b/log/community/log_warn.log @@ -1,550 +1,241 @@ -2021-01-25 11:05:37,824 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,826 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,826 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:05,182 WARN [http-nio-8080-exec-9] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "abc"] -2021-01-25 11:06:51,666 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:13:09,259 WARN [http-nio-8080-exec-1] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "asd"] -2021-01-25 11:14:42,490 WARN [http-nio-8080-exec-6] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "asd"] -2021-01-25 11:17:08,932 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,751 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,755 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 12:15:21,755 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,181 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,181 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:46,185 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:15:57,761 WARN [http-nio-8080-exec-6] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] -2021-01-25 15:16:15,020 WARN [http-nio-8080-exec-4] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] -2021-01-25 15:16:18,420 WARN [http-nio-8080-exec-3] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] -2021-01-25 15:16:20,883 WARN [http-nio-8080-exec-7] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] -2021-01-25 15:17:35,392 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,197 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,211 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,620 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 15:55:58,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,028 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,230 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 16:04:25,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,545 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,545 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,549 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:19:44,549 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:20:12,051 WARN [http-nio-8080-exec-7] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "profile.html"] -2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:49,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:21:56,215 WARN [http-nio-8080-exec-1] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id"] -2021-01-25 17:22:05,019 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id"] -2021-01-25 17:22:52,433 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:25:22,168 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:26:43,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,036 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. -2021-01-25 17:33:35,053 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,425 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,427 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,427 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,427 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,427 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,428 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,428 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,428 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,428 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,428 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,428 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,429 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,429 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,429 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,429 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,429 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,430 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,430 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,430 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:16,430 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:44:19,223 WARN [org.springframework.kafka.KafkaListenerEndpointContainer#0-0-C-1] o.a.k.c.NetworkClient [NetworkClient.java:1073] [Consumer clientId=consumer-test-consumer-group-1, groupId=test-consumer-group] Error while fetching metadata with correlation id 2 : {like=LEADER_NOT_AVAILABLE, comment=LEADER_NOT_AVAILABLE, follow=LEADER_NOT_AVAILABLE} +2021-01-28 15:55:37,349 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,349 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,349 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,349 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,350 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,350 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,350 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,350 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,350 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,350 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 15:55:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,774 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,775 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,775 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,775 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,775 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,776 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,776 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,776 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,776 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,776 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,776 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,776 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,777 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,777 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,777 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,777 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,778 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,778 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,778 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:26:46,778 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,510 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,510 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,510 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,511 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,511 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,511 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,511 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,511 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,512 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,512 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,512 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,512 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,512 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,512 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,513 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,513 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,513 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,513 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,513 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:29:36,513 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,960 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,962 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,962 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,962 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,962 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,962 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,963 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,964 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,964 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,964 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:35:18,964 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,240 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,240 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,240 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,241 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,241 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,241 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,241 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,241 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,242 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,242 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,242 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,242 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,242 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,243 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,243 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,243 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,243 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,243 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,243 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:38:28,244 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,649 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,650 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,650 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,650 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,650 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,651 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,651 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,651 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,651 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,651 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,651 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,652 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 16:50:29,652 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,739 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,739 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,739 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,739 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,739 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,740 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,740 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,740 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,740 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:54:19,740 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,364 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,364 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,365 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,365 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,365 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,365 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,365 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,365 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,366 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,366 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,366 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,366 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,366 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,367 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,367 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,367 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,367 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,367 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,368 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 17:55:04,368 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,451 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,451 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,451 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,452 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,452 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,452 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,452 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,452 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,452 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,452 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,453 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,453 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,453 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,453 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,453 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,453 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,454 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,454 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,454 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 18:03:54,454 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,491 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,492 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,493 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,494 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,494 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,494 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,494 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,495 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,495 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,495 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,495 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,496 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:20:44,496 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,532 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,533 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,533 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,533 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,533 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,534 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,534 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,534 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,534 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,534 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,535 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,535 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,535 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,535 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,535 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,535 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,536 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,536 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,536 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-28 21:46:06,536 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. diff --git a/log/community/warn/log-warn-2021-01-25.0.log b/log/community/warn/log-warn-2021-01-25.0.log new file mode 100644 index 00000000..88b00373 --- /dev/null +++ b/log/community/warn/log-warn-2021-01-25.0.log @@ -0,0 +1,550 @@ +2021-01-25 11:05:37,824 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,826 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,826 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:05:37,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:05,182 WARN [http-nio-8080-exec-9] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "abc"] +2021-01-25 11:06:51,666 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:06:51,671 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,306 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:00,310 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:13:09,259 WARN [http-nio-8080-exec-1] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "asd"] +2021-01-25 11:14:42,490 WARN [http-nio-8080-exec-6] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [java.lang.NumberFormatException: For input string: "asd"] +2021-01-25 11:17:08,932 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,933 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,934 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,935 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:17:08,936 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,922 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:18:36,923 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:19:56,644 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,843 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,844 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,845 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 11:22:05,846 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,751 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,752 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,753 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,754 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,755 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 12:15:21,755 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,181 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,181 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,182 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,183 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,184 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:46,185 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:15:57,761 WARN [http-nio-8080-exec-6] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:16:15,020 WARN [http-nio-8080-exec-4] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:16:18,420 WARN [http-nio-8080-exec-3] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:16:20,883 WARN [http-nio-8080-exec-7] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.data.redis.RedisConnectionFailureException: Unable to connect to Redis; nested exception is io.lettuce.core.RedisConnectionException: Unable to connect to localhost:6379] +2021-01-25 15:17:35,392 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,393 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,394 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,395 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:17:35,396 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,229 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:21:50,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,831 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:37:58,832 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,197 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,198 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,199 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,200 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:43:05,201 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,211 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,212 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,213 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,214 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:46:43,215 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,918 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,919 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,920 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:50:57,921 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,817 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,818 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,819 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:51:59,820 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,620 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,621 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 15:55:58,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,028 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,029 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,030 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,031 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:01:37,032 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,230 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,231 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,232 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,233 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 16:04:25,234 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,545 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,545 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,546 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,547 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,548 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,549 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:19:44,549 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:20:12,051 WARN [http-nio-8080-exec-7] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "profile.html"] +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,148 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,149 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,150 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:49,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:21:56,215 WARN [http-nio-8080-exec-1] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id"] +2021-01-25 17:22:05,019 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "user.id"] +2021-01-25 17:22:52,433 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,434 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,435 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,436 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:22:52,437 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,164 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,165 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,166 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,167 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:25:22,168 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,151 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,152 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,153 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,154 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,155 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:26:43,156 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,372 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,373 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,374 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:29:10,375 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,036 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,037 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,038 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,039 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:32:42,040 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,049 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,050 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,051 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,052 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-25 17:33:35,053 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. diff --git a/log/community/warn/log-warn-2021-01-27.0.log b/log/community/warn/log-warn-2021-01-27.0.log new file mode 100644 index 00000000..7a84ab97 --- /dev/null +++ b/log/community/warn/log-warn-2021-01-27.0.log @@ -0,0 +1,323 @@ +2021-01-27 11:11:42,121 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:11:42,131 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 11:14:20,723 WARN [http-nio-8080-exec-9] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "my-reply.html"] +2021-01-27 14:11:28,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,693 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,693 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,693 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,693 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,693 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,693 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,695 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,695 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,695 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,695 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,695 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:11:28,695 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,350 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,351 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,352 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,353 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,353 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,353 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,353 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,353 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,353 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,354 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,354 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,354 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:13:37,354 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,676 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,676 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,677 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,677 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,677 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,677 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,677 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,678 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,678 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,678 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,678 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,678 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,678 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,679 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,679 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,679 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,679 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,679 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,679 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:21:29,680 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,692 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:25:32,694 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,795 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,796 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,796 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,796 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,796 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,796 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,796 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,797 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,797 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,797 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,797 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,797 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,797 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,798 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,798 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,798 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,798 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,798 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,798 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:28:43,799 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,883 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,884 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,884 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,884 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,884 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,885 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,885 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,885 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,885 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,885 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,886 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,886 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,886 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,886 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,887 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,887 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,887 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,887 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,887 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:29:50,888 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,827 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,828 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,829 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:26,830 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:33:53,374 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "my-post.html"] +2021-01-27 14:33:54,770 WARN [http-nio-8080-exec-10] o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver [AbstractHandlerExceptionResolver.java:207] Resolved [org.springframework.web.method.annotation.MethodArgumentTypeMismatchException: Failed to convert value of type 'java.lang.String' to required type 'int'; nested exception is java.lang.NumberFormatException: For input string: "my-reply.html"] +2021-01-27 14:37:11,734 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,735 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,735 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,735 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,735 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,735 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,736 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,736 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,736 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,736 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,736 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,736 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,737 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:37:11,738 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,622 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:40:18,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,623 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,624 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,625 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 14:44:42,626 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:28:57,891 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,701 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,701 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,701 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,702 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,702 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,702 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,702 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,702 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,702 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,703 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,703 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,703 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,703 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,703 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,703 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,704 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,704 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,704 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,704 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:40:47,704 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,101 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,101 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,101 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,101 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,102 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,102 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,102 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,102 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,102 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,102 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,103 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,103 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,103 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,103 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,103 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,103 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,104 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,104 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,104 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 15:55:30,104 WARN [restartedMain] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,509 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,510 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,510 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,510 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,511 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,511 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,511 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,512 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,512 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,513 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,513 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,513 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,514 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,514 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,514 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,515 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,516 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,516 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,517 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:07:25,517 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,264 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.geo.Point to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,266 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.geo.Point as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,267 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,268 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,270 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from interface org.springframework.data.elasticsearch.core.geo.GeoJson to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,271 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to interface org.springframework.data.elasticsearch.core.geo.GeoJson as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,272 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,273 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,274 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,275 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPoint as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,276 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,277 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,278 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,279 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiLineString as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,280 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,281 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,282 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,283 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonMultiPolygon as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,284 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:270] Registering converter from class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection to interface java.util.Map as writing converter although it doesn't convert to a store-supported type! You might want to check your annotation setup at the converter implementation. +2021-01-27 22:09:32,284 WARN [main] o.s.d.c.CustomConversions [CustomConversions.java:260] Registering converter from interface java.util.Map to class org.springframework.data.elasticsearch.core.geo.GeoJsonGeometryCollection as reading converter although it doesn't convert from a store-supported type! You might want to check your annotation setup at the converter implementation. diff --git a/src/main/java/com/greate/community/aspect/ServiceLogAspect.java b/src/main/java/com/greate/community/aspect/ServiceLogAspect.java index 3404818f..9418c38f 100644 --- a/src/main/java/com/greate/community/aspect/ServiceLogAspect.java +++ b/src/main/java/com/greate/community/aspect/ServiceLogAspect.java @@ -33,6 +33,9 @@ public class ServiceLogAspect { public void before(JoinPoint joinPoint) { // 用户[IP 地址], 在某个时间访问了 [com.greate.community.service.xxx] ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); + if (attributes == null) { + return ; + } HttpServletRequest request = attributes.getRequest(); String ip = request.getRemoteHost(); String time = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date()); diff --git a/src/main/java/com/greate/community/config/WebMvcConfig.java b/src/main/java/com/greate/community/config/WebMvcConfig.java index 5b32848b..6b8e36fe 100644 --- a/src/main/java/com/greate/community/config/WebMvcConfig.java +++ b/src/main/java/com/greate/community/config/WebMvcConfig.java @@ -2,6 +2,7 @@ package com.greate.community.config; import com.greate.community.controller.interceptor.LoginRequiredInterceptor; import com.greate.community.controller.interceptor.LoginTicketInterceptor; +import com.greate.community.controller.interceptor.MessageInterceptor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; @@ -19,6 +20,9 @@ public class WebMvcConfig implements WebMvcConfigurer { @Autowired private LoginRequiredInterceptor loginRequiredInterceptor; + @Autowired + private MessageInterceptor messageInterceptor; + @Override public void addInterceptors(InterceptorRegistry registry) { // 对除静态资源外所有路径进行拦截 @@ -28,6 +32,9 @@ public class WebMvcConfig implements WebMvcConfigurer { // 对除静态资源外所有路径进行拦截 registry.addInterceptor(loginRequiredInterceptor) .excludePathPatterns("/css/**", "/js/**", "/img/**"); + + registry.addInterceptor(messageInterceptor) + .excludePathPatterns("/css/**", "/js/**", "/img/**"); } diff --git a/src/main/java/com/greate/community/controller/CommentController.java b/src/main/java/com/greate/community/controller/CommentController.java index 088a7b2e..e96a78f4 100644 --- a/src/main/java/com/greate/community/controller/CommentController.java +++ b/src/main/java/com/greate/community/controller/CommentController.java @@ -1,7 +1,12 @@ package com.greate.community.controller; import com.greate.community.entity.Comment; +import com.greate.community.entity.DiscussPost; +import com.greate.community.entity.Event; +import com.greate.community.event.EventProducer; import com.greate.community.service.CommentService; +import com.greate.community.service.DiscussPostSerivce; +import com.greate.community.util.CommunityConstant; import com.greate.community.util.HostHolder; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; @@ -13,9 +18,12 @@ import org.springframework.web.bind.annotation.RequestMapping; import java.util.Date; +/** + * 评论/回复 + */ @Controller @RequestMapping("/comment") -public class CommentController { +public class CommentController implements CommunityConstant { @Autowired private HostHolder hostHolder; @@ -23,6 +31,12 @@ public class CommentController { @Autowired private CommentService commentService; + @Autowired + private DiscussPostSerivce discussPostSerivce; + + @Autowired + private EventProducer eventProducer; + /** * 添加评论 * @param discussPostId @@ -36,6 +50,24 @@ public class CommentController { comment.setCreateTime(new Date()); commentService.addComment(comment); + // 触发评论事件(系统通知) + Event event = new Event() + .setTopic(TOPIC_COMMNET) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(comment.getEntityType()) + .setEntityId(comment.getEntityId()) + .setData("postId", discussPostId); + if (comment.getEntityType() == ENTITY_TYPE_POST) { + DiscussPost target = discussPostSerivce.findDiscussPostById(comment.getEntityId()); + event.setEntityUserId(target.getUserId()); + } + else if (comment.getEntityType() == ENTITY_TYPE_COMMENT) { + Comment target = commentService.findCommentById(comment.getEntityId()); + event.setEntityUserId(target.getUserId()); + } + + eventProducer.fireEvent(event); + return "redirect:/discuss/detail/" + discussPostId; } diff --git a/src/main/java/com/greate/community/controller/DiscussPostController.java b/src/main/java/com/greate/community/controller/DiscussPostController.java index 61736d83..15e0a0f2 100644 --- a/src/main/java/com/greate/community/controller/DiscussPostController.java +++ b/src/main/java/com/greate/community/controller/DiscussPostController.java @@ -18,6 +18,9 @@ import org.springframework.web.bind.annotation.*; import java.util.*; +/** + * 帖子 + */ @Controller @RequestMapping("/discuss") public class DiscussPostController implements CommunityConstant { diff --git a/src/main/java/com/greate/community/controller/FollowController.java b/src/main/java/com/greate/community/controller/FollowController.java new file mode 100644 index 00000000..5981e429 --- /dev/null +++ b/src/main/java/com/greate/community/controller/FollowController.java @@ -0,0 +1,165 @@ +package com.greate.community.controller; + +import com.greate.community.entity.Event; +import com.greate.community.entity.Page; +import com.greate.community.entity.User; +import com.greate.community.event.EventProducer; +import com.greate.community.service.FollowService; +import com.greate.community.service.UserService; +import com.greate.community.util.CommunityConstant; +import com.greate.community.util.CommunityUtil; +import com.greate.community.util.HostHolder; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.ResponseBody; + +import java.util.List; +import java.util.Map; + +/** + * 关注(目前只做了关注用户) + */ +@Controller +public class FollowController implements CommunityConstant{ + + @Autowired + private FollowService followService; + + @Autowired + private HostHolder hostHolder; + + @Autowired + private UserService userService; + + @Autowired + private EventProducer eventProducer; + + /** + * 关注 + * @param entityType + * @param entityId + * @return + */ + @PostMapping("/follow") + @ResponseBody + public String follow(int entityType, int entityId) { + User user = hostHolder.getUser(); + + followService.follow(user.getId(), entityType, entityId); + + // 触发关注事件(系统通知) + Event event = new Event() + .setTopic(TOPIC_FOLLOW) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(entityType) + .setEntityId(entityId) + .setEntityUserId(entityId); + eventProducer.fireEvent(event); + + return CommunityUtil.getJSONString(0, "已关注"); + } + + /** + * 取消关注 + * @param entityType + * @param entityId + * @return + */ + @PostMapping("/unfollow") + @ResponseBody + public String unfollow(int entityType, int entityId) { + User user = hostHolder.getUser(); + + followService.unfollow(user.getId(), entityType, entityId); + + return CommunityUtil.getJSONString(0, "已取消关注"); + } + + /** + * 某个用户的关注列表(人) + * @param userId + * @param page + * @param model + * @return + */ + @GetMapping("/followees/{userId}") + public String getFollowees(@PathVariable("userId") int userId, Page page, Model model) { + User user = userService.findUserById(userId); + if (user == null) { + throw new RuntimeException("该用户不存在"); + } + model.addAttribute("user", user); + + page.setLimit(5); + page.setPath("/followees/" + userId); + page.setRows((int) followService.findFolloweeCount(userId, ENTITY_TYPE_USER)); + + // 获取关注列表 + List> userList = followService.findFollowees(userId, page.getOffset(), page.getLimit()); + + if (userList != null) { + for (Map map : userList) { + User u = (User) map.get("user"); // 被关注的用户 + map.put("hasFollowed", hasFollowed(u.getId())); // 判断当前登录用户是否已关注这个关注列表中的某个用户 + } + } + + model.addAttribute("users", userList); + + return "/site/followee"; + } + + /** + * 某个用户的粉丝列表 + * @param userId + * @param page + * @param model + * @return + */ + @GetMapping("/followers/{userId}") + public String getFollowers(@PathVariable("userId") int userId, Page page, Model model) { + User user = userService.findUserById(userId); + if (user == null) { + throw new RuntimeException("该用户不存在"); + } + model.addAttribute("user", user); + + page.setLimit(5); + page.setPath("/followers/" + userId); + page.setRows((int) followService.findFollowerCount(ENTITY_TYPE_USER, userId)); + + // 获取关注列表 + List> userList = followService.findFollowers(userId, page.getOffset(), page.getLimit()); + + if (userList != null) { + for (Map map : userList) { + User u = (User) map.get("user"); // 被关注的用户 + map.put("hasFollowed", hasFollowed(u.getId())); // 判断当前登录用户是否已关注这个关注列表中的某个用户 + } + } + + model.addAttribute("users", userList); + + return "/site/follower"; + } + + /** + * 判断当前登录用户是否已关注某个用户 + * @param userId 某个用户 + * @return + */ + private boolean hasFollowed(int userId) { + if (hostHolder.getUser() == null) { + return false; + } + + return followService.hasFollowed(hostHolder.getUser().getId(), ENTITY_TYPE_USER, userId); + } + + + +} diff --git a/src/main/java/com/greate/community/controller/HomeController.java b/src/main/java/com/greate/community/controller/HomeController.java index 3d5effc8..38450c7e 100644 --- a/src/main/java/com/greate/community/controller/HomeController.java +++ b/src/main/java/com/greate/community/controller/HomeController.java @@ -18,7 +18,7 @@ import java.util.List; import java.util.Map; /** - * 处理首页逻辑 + * 首页 */ @Controller public class HomeController implements CommunityConstant { diff --git a/src/main/java/com/greate/community/controller/LikeController.java b/src/main/java/com/greate/community/controller/LikeController.java index 06eca36a..c7c2d4d9 100644 --- a/src/main/java/com/greate/community/controller/LikeController.java +++ b/src/main/java/com/greate/community/controller/LikeController.java @@ -1,7 +1,12 @@ package com.greate.community.controller; +import com.greate.community.entity.Comment; +import com.greate.community.entity.DiscussPost; +import com.greate.community.entity.Event; import com.greate.community.entity.User; +import com.greate.community.event.EventProducer; import com.greate.community.service.LikeService; +import com.greate.community.util.CommunityConstant; import com.greate.community.util.CommunityUtil; import com.greate.community.util.HostHolder; import org.springframework.beans.factory.annotation.Autowired; @@ -16,7 +21,7 @@ import java.util.Map; * 点赞 */ @Controller -public class LikeController { +public class LikeController implements CommunityConstant { @Autowired private HostHolder hostHolder; @@ -24,16 +29,20 @@ public class LikeController { @Autowired private LikeService likeService; + @Autowired + private EventProducer eventProducer; + /** * 点赞 * @param entityType * @param entityId * @param entityUserId 赞的帖子/评论的作者 id + * @param postId 帖子的 id (点赞了哪个帖子,点赞的评论属于哪个帖子,点赞的回复属于哪个帖子) * @return */ @PostMapping("/like") @ResponseBody - public String like(int entityType, int entityId, int entityUserId) { + public String like(int entityType, int entityId, int entityUserId, int postId) { User user = hostHolder.getUser(); // 点赞 likeService.like(user.getId(), entityType, entityId, entityUserId); @@ -46,6 +55,18 @@ public class LikeController { map.put("likeCount", likeCount); map.put("likeStatus", likeStatus); + // 触发点赞事件(系统通知) - 取消点赞不通知 + if (likeStatus == 1) { + Event event = new Event() + .setTopic(TOPIC_LIKE) + .setUserId(hostHolder.getUser().getId()) + .setEntityType(entityType) + .setEntityId(entityId) + .setEntityUserId(entityUserId) + .setData("postId", postId); + eventProducer.fireEvent(event); + } + return CommunityUtil.getJSONString(0, null, map); } diff --git a/src/main/java/com/greate/community/controller/LoginController.java b/src/main/java/com/greate/community/controller/LoginController.java index e817087c..0540c827 100644 --- a/src/main/java/com/greate/community/controller/LoginController.java +++ b/src/main/java/com/greate/community/controller/LoginController.java @@ -4,11 +4,14 @@ import com.google.code.kaptcha.Producer; import com.greate.community.entity.User; import com.greate.community.service.UserService; import com.greate.community.util.CommunityConstant; +import com.greate.community.util.CommunityUtil; +import com.greate.community.util.RedisKeyUtil; import org.apache.commons.lang3.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; +import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; @@ -21,9 +24,10 @@ import javax.servlet.http.HttpSession; import java.awt.image.BufferedImage; import java.io.IOException; import java.util.Map; +import java.util.concurrent.TimeUnit; /** - * 处理登录注册 + * 登录、登出、注册 */ @Controller public class LoginController implements CommunityConstant { @@ -36,6 +40,9 @@ public class LoginController implements CommunityConstant { @Autowired private Producer kaptchaProducer; + @Autowired + private RedisTemplate redisTemplate; + @Value("${server.servlet.context-path}") private String contextPath; @@ -118,8 +125,18 @@ public class LoginController implements CommunityConstant { BufferedImage image = kaptchaProducer.createImage(text); // 生成图片 // 将验证码存入 session - session.setAttribute("kaptcha", text); - + // session.setAttribute("kaptcha", text); + + // 验证码的归属者 + String kaptchaOwner = CommunityUtil.generateUUID(); + Cookie cookie = new Cookie("kaptchaOwner", kaptchaOwner); + cookie.setMaxAge(60); + cookie.setPath(contextPath); + response.addCookie(cookie); + // 将验证码存入 redis + String redisKey = RedisKeyUtil.getKaptchaKey(kaptchaOwner); + redisTemplate.opsForValue().set(redisKey, text, 60, TimeUnit.SECONDS); + // 将图片输出给浏览器 response.setContentType("image/png"); try { @@ -137,7 +154,8 @@ public class LoginController implements CommunityConstant { * @param code 验证码 * @param rememberMe 是否记住我(点击记住我后,凭证的有效期延长) * @param model - * @param session 从 session 中取出验证码 + // * @param session 从 session 中取出验证码 + * @param kaptchaOwner 从 cookie 中取出的 kaptchaOwner * @param response * @return */ @@ -146,9 +164,16 @@ public class LoginController implements CommunityConstant { @RequestParam("password") String password, @RequestParam("code") String code, @RequestParam(value = "rememberMe", required = false) boolean rememberMe, - Model model, HttpSession session, HttpServletResponse response) { + Model model, /*HttpSession session, */HttpServletResponse response, + @CookieValue("kaptchaOwner") String kaptchaOwner) { // 检查验证码 - String kaptcha = (String) session.getAttribute("kaptcha"); + // String kaptcha = (String) session.getAttribute("kaptcha"); + String kaptcha = null; + if (StringUtils.isNotBlank(kaptchaOwner)) { + String redisKey = RedisKeyUtil.getKaptchaKey(kaptchaOwner); + kaptcha = (String) redisTemplate.opsForValue().get(redisKey); + } + if (StringUtils.isBlank(kaptcha) || StringUtils.isBlank(code) || !kaptcha.equalsIgnoreCase(code)) { model.addAttribute("codeMsg", "验证码错误"); return "/site/login"; diff --git a/src/main/java/com/greate/community/controller/MessageController.java b/src/main/java/com/greate/community/controller/MessageController.java index 149ab192..4ab8b3c9 100644 --- a/src/main/java/com/greate/community/controller/MessageController.java +++ b/src/main/java/com/greate/community/controller/MessageController.java @@ -1,21 +1,28 @@ package com.greate.community.controller; +import com.alibaba.fastjson.JSONObject; import com.greate.community.entity.Message; import com.greate.community.entity.Page; import com.greate.community.entity.User; import com.greate.community.service.MessageService; import com.greate.community.service.UserService; +import com.greate.community.util.CommunityConstant; import com.greate.community.util.CommunityUtil; import com.greate.community.util.HostHolder; +import io.netty.util.concurrent.UnorderedThreadPoolEventExecutor; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.*; +import org.springframework.web.util.HtmlUtils; import java.util.*; +/** + * 私信/系统通知 + */ @Controller -public class MessageController { +public class MessageController implements CommunityConstant { @Autowired private HostHolder hostHolder; @@ -61,9 +68,11 @@ public class MessageController { } model.addAttribute("conversations", conversations); - // 查询当前用户的所有未读私信数量 + // 查询当前用户的所有未读消息数量 int letterUnreadCount = messageService.findLetterUnreadCount(user.getId(), null); model.addAttribute("letterUnreadCount", letterUnreadCount); + int noticeUnreadCount = messageService.findNoticeUnReadCount(user.getId(), null); + model.addAttribute("noticeUnreadCount", noticeUnreadCount); return "/site/letter"; @@ -181,4 +190,134 @@ public class MessageController { return CommunityUtil.getJSONString(0); } + + /** + * 通知列表(只显示最新一条消息) + * @param model + * @return + */ + @GetMapping("/notice/list") + public String getNoticeList(Model model) { + User user = hostHolder.getUser(); + + // 查询评论类通知 + Message message = messageService.findLatestNotice(user.getId(), TOPIC_COMMNET); + // 封装通知需要的各种数据 + Map messageVO = new HashMap<>(); + if (message != null) { + messageVO.put("message", message); + + String content = HtmlUtils.htmlUnescape(message.getContent()); + Map data = JSONObject.parseObject(content, HashMap.class); + + messageVO.put("user", userService.findUserById((Integer) data.get("userId"))); + messageVO.put("entityType", data.get("entityType")); + messageVO.put("entityId", data.get("entityId")); + messageVO.put("postId", data.get("postId")); + + int count = messageService.findNoticeCount(user.getId(), TOPIC_COMMNET); + messageVO.put("count", count); + + int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_COMMNET); + messageVO.put("unread", unread); + } + model.addAttribute("commentNotice", messageVO); + + // 查询点赞类通知 + message = messageService.findLatestNotice(user.getId(), TOPIC_LIKE); + messageVO = new HashMap<>(); + if (message != null) { + messageVO.put("message", message); + + String content = HtmlUtils.htmlUnescape(message.getContent()); + Map data = JSONObject.parseObject(content, HashMap.class); + + messageVO.put("user", userService.findUserById((Integer) data.get("userId"))); + messageVO.put("entityType", data.get("entityType")); + messageVO.put("entityId", data.get("entityId")); + messageVO.put("postId", data.get("postId")); + + int count = messageService.findNoticeCount(user.getId(), TOPIC_LIKE); + messageVO.put("count", count); + + int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_LIKE); + messageVO.put("unread", unread); + } + model.addAttribute("likeNotice", messageVO); + + // 查询关注类通知 + message = messageService.findLatestNotice(user.getId(), TOPIC_FOLLOW); + messageVO = new HashMap<>(); + if (message != null) { + messageVO.put("message", message); + + String content = HtmlUtils.htmlUnescape(message.getContent()); + Map data = JSONObject.parseObject(content, HashMap.class); + + messageVO.put("user", userService.findUserById((Integer) data.get("userId"))); + messageVO.put("entityType", data.get("entityType")); + messageVO.put("entityId", data.get("entityId")); + + int count = messageService.findNoticeCount(user.getId(), TOPIC_FOLLOW); + messageVO.put("count", count); + + int unread = messageService.findNoticeUnReadCount(user.getId(), TOPIC_FOLLOW); + messageVO.put("unread", unread); + } + model.addAttribute("followNotice", messageVO); + + // 查询未读消息数量 + int letterUnreadCount = messageService.findLetterUnreadCount(user.getId(), null); + model.addAttribute("letterUnreadCount", letterUnreadCount); + int noticeUnreadCount = messageService.findNoticeUnReadCount(user.getId(), null); + model.addAttribute("noticeUnreadCount", noticeUnreadCount); + + return "/site/notice"; + } + + /** + * 查询某个主题所包含的通知列表 + * @param topic + * @param page + * @param model + * @return + */ + @GetMapping("/notice/detail/{topic}") + public String getNoticeDetail(@PathVariable("topic") String topic, Page page, Model model) { + User user = hostHolder.getUser(); + + page.setLimit(5); + page.setPath("/notice/detail/" + topic); + page.setRows(messageService.findNoticeCount(user.getId(), topic)); + + List noticeList = messageService.findNotices(user.getId(), topic,page.getOffset(), page.getLimit()); + List> noticeVoList = new ArrayList<>(); + if (noticeList != null) { + for (Message notice : noticeList) { + Map map = new HashMap<>(); + // 通知 + map.put("notice", notice); + // 内容 + String content = HtmlUtils.htmlUnescape(notice.getContent()); + Map data = JSONObject.parseObject(content, HashMap.class); + map.put("user", userService.findUserById((Integer) data.get("userId"))); + map.put("entityType", data.get("entityType")); + map.put("entityId", data.get("entityId")); + map.put("postId", data.get("postId")); + // 发送系统通知的作者 + map.put("fromUser", userService.findUserById(notice.getFromId())); + + noticeVoList.add(map); + } + } + model.addAttribute("notices", noticeVoList); + + // 设置已读 + List ids = getUnreadLetterIds(noticeList); + if (!ids.isEmpty()) { + messageService.readMessage(ids); + } + + return "/site/notice-detail"; + } } diff --git a/src/main/java/com/greate/community/controller/UserController.java b/src/main/java/com/greate/community/controller/UserController.java index c0580fb9..5e106638 100644 --- a/src/main/java/com/greate/community/controller/UserController.java +++ b/src/main/java/com/greate/community/controller/UserController.java @@ -2,8 +2,10 @@ package com.greate.community.controller; import com.greate.community.annotation.LoginRequired; import com.greate.community.entity.User; +import com.greate.community.service.FollowService; import com.greate.community.service.LikeService; import com.greate.community.service.UserService; +import com.greate.community.util.CommunityConstant; import com.greate.community.util.CommunityUtil; import com.greate.community.util.HostHolder; import jdk.nashorn.internal.objects.annotations.Getter; @@ -28,11 +30,11 @@ import java.util.List; /** - * 处理用户信息的修改 + * 用户 */ @Controller @RequestMapping("/user") -public class UserController { +public class UserController implements CommunityConstant { private static final Logger logger = LoggerFactory.getLogger(UserController.class); @@ -45,6 +47,9 @@ public class UserController { @Autowired private LikeService likeService; + @Autowired + private FollowService followService; + // 网站域名 @Value("${community.path.domain}") private String domain; @@ -188,6 +193,18 @@ public class UserController { // 获赞数量 int userLikeCount = likeService.findUserLikeCount(userId); model.addAttribute("userLikeCount", userLikeCount); + // 关注数量 + long followeeCount = followService.findFolloweeCount(userId, ENTITY_TYPE_USER); + model.addAttribute("followeeCount", followeeCount); + // 粉丝数量 + long followerCount = followService.findFollowerCount(ENTITY_TYPE_USER, userId); + model.addAttribute("followerCount", followerCount); + // 当前登录用户是否已关注该用户 + boolean hasFollowed = false; + if (hostHolder.getUser() != null) { + hasFollowed = followService.hasFollowed(hostHolder.getUser().getId(), ENTITY_TYPE_USER, userId); + } + model.addAttribute("hasFollowed", hasFollowed); return "/site/profile"; } diff --git a/src/main/java/com/greate/community/controller/interceptor/MessageInterceptor.java b/src/main/java/com/greate/community/controller/interceptor/MessageInterceptor.java new file mode 100644 index 00000000..d324728b --- /dev/null +++ b/src/main/java/com/greate/community/controller/interceptor/MessageInterceptor.java @@ -0,0 +1,41 @@ +package com.greate.community.controller.interceptor; + +import com.greate.community.entity.User; +import com.greate.community.service.MessageService; +import com.greate.community.util.HostHolder; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; +import org.springframework.web.servlet.HandlerInterceptor; +import org.springframework.web.servlet.ModelAndView; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; + +@Component +public class MessageInterceptor implements HandlerInterceptor { + + @Autowired + private HostHolder hostHolder; + + @Autowired + private MessageService messageService; + + /** + * Controller之后模板之前被调用 + * 获取未读私信/系统通知的数量 + * @param request + * @param response + * @param handler + * @param modelAndView + * @throws Exception + */ + @Override + public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception { + User user = hostHolder.getUser(); + if (user != null && modelAndView != null) { + int letterUnreadCount = messageService.findLetterUnreadCount(user.getId(), null); + int noticeUnreadCount = messageService.findNoticeUnReadCount(user.getId(), null); + modelAndView.addObject("allUnreadCount", letterUnreadCount + noticeUnreadCount); + } + } +} diff --git a/src/main/java/com/greate/community/dao/CommentMapper.java b/src/main/java/com/greate/community/dao/CommentMapper.java index 54ab9e25..1ca4bb1f 100644 --- a/src/main/java/com/greate/community/dao/CommentMapper.java +++ b/src/main/java/com/greate/community/dao/CommentMapper.java @@ -8,6 +8,13 @@ import java.util.List; @Mapper public interface CommentMapper { + /** + * 根据 id 查询评论 + * @param id + * @return + */ + Comment selectCommentById(int id); + /** * 根据评论目标(类别、id)对评论进行分页查询 * @param entityType 评论目标的类别 @@ -33,4 +40,6 @@ public interface CommentMapper { */ int insertComment(Comment comment); + + } diff --git a/src/main/java/com/greate/community/dao/LoginTicketMapper.java b/src/main/java/com/greate/community/dao/LoginTicketMapper.java index 1d350f8d..01d5bf06 100644 --- a/src/main/java/com/greate/community/dao/LoginTicketMapper.java +++ b/src/main/java/com/greate/community/dao/LoginTicketMapper.java @@ -4,6 +4,7 @@ import com.greate.community.entity.LoginTicket; import org.apache.ibatis.annotations.Mapper; @Mapper +@Deprecated public interface LoginTicketMapper { /** diff --git a/src/main/java/com/greate/community/dao/MessageMapper.java b/src/main/java/com/greate/community/dao/MessageMapper.java index 8cac17ed..01b0dcc2 100644 --- a/src/main/java/com/greate/community/dao/MessageMapper.java +++ b/src/main/java/com/greate/community/dao/MessageMapper.java @@ -64,5 +64,41 @@ public interface MessageMapper { */ int insertMessage(Message message); + /** + * 查询某个主题下最新的通知 + * @param userId + * @param topic + * @return + */ + Message selectLatestNotice(int userId, String topic); + + /** + * 查询某个主题下包含的系统通知数量 + * @param userId + * @param topic + * @return + */ + int selectNoticeCount(int userId, String topic); + + /** + * 查询未读的系统通知数量 + * @param userId + * @param topic + * @return + */ + int selectNoticeUnReadCount(int userId, String topic); + + /** + * 查询某个主题所包含的通知列表 + * @param userId + * @param topic + * @param offset + * @param limit + * @return + */ + List selectNotices(int userId, String topic, int offset, int limit); + + + } diff --git a/src/main/java/com/greate/community/entity/Event.java b/src/main/java/com/greate/community/entity/Event.java new file mode 100644 index 00000000..656147f4 --- /dev/null +++ b/src/main/java/com/greate/community/entity/Event.java @@ -0,0 +1,71 @@ +package com.greate.community.entity; + +import java.util.HashMap; +import java.util.Map; + +/** + * 封装事件(用于系统通知) + */ +public class Event { + + private String topic; // 事件类型 + private int userId; // 事件由谁触发 + private int entityType; // 实体类型 + private int entityId; // 实体 id + private int entityUserId; // 实体的作者(该通知发送给他) + private Map data = new HashMap<>(); // 存储未来可能需要用到的数据 + + public String getTopic() { + return topic; + } + + public Event setTopic(String topic) { + this.topic = topic; + return this; + } + + public int getUserId() { + return userId; + } + + public Event setUserId(int userId) { + this.userId = userId; + return this; + } + + public int getEntityType() { + return entityType; + } + + public Event setEntityType(int entityType) { + this.entityType = entityType; + return this; + } + + public int getEntityId() { + return entityId; + } + + public Event setEntityId(int entityId) { + this.entityId = entityId; + return this; + } + + public int getEntityUserId() { + return entityUserId; + } + + public Event setEntityUserId(int entityUserId) { + this.entityUserId = entityUserId; + return this; + } + + public Map getData() { + return data; + } + + public Event setData(String key, Object value) { + this.data.put(key, value); + return this; + } +} diff --git a/src/main/java/com/greate/community/event/EventConsumer.java b/src/main/java/com/greate/community/event/EventConsumer.java new file mode 100644 index 00000000..fe176559 --- /dev/null +++ b/src/main/java/com/greate/community/event/EventConsumer.java @@ -0,0 +1,65 @@ +package com.greate.community.event; + +import com.alibaba.fastjson.JSONObject; +import com.greate.community.entity.Event; +import com.greate.community.entity.Message; +import com.greate.community.service.MessageService; +import com.greate.community.util.CommunityConstant; +import org.apache.kafka.clients.consumer.ConsumerRecord; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.kafka.annotation.KafkaListener; +import org.springframework.kafka.core.KafkaTemplate; +import org.springframework.stereotype.Component; + +import java.util.Date; +import java.util.HashMap; +import java.util.Map; + +/** + * 事件消费者 + */ +@Component +public class EventConsumer implements CommunityConstant { + + private static final Logger logger = LoggerFactory.getLogger(EventConsumer.class); + + @Autowired + private MessageService messageService; + + @KafkaListener(topics = {TOPIC_COMMNET, TOPIC_LIKE, TOPIC_FOLLOW}) + public void handleMessage(ConsumerRecord record) { + if (record == null || record.value() == null) { + logger.error("消息的内容为空"); + return ; + } + Event event = JSONObject.parseObject(record.value().toString(), Event.class); + if (event == null) { + logger.error("消息格式错误"); + return ; + } + + // 发送系统通知 + Message message = new Message(); + message.setFromId(SYSTEM_USER_ID); + message.setToId(event.getEntityUserId()); + message.setConversationId(event.getTopic()); + message.setCreateTime(new Date()); + + Map content = new HashMap<>(); + content.put("userId", event.getUserId()); + content.put("entityType", event.getEntityType()); + content.put("entityId", event.getEntityId()); + if (!event.getData().isEmpty()) { + for (Map.Entry entry : event.getData().entrySet()) { + content.put(entry.getKey(), entry.getValue()); + } + } + message.setContent(JSONObject.toJSONString(content)); + + messageService.addMessage(message); + + } + +} diff --git a/src/main/java/com/greate/community/event/EventProducer.java b/src/main/java/com/greate/community/event/EventProducer.java new file mode 100644 index 00000000..dbf73822 --- /dev/null +++ b/src/main/java/com/greate/community/event/EventProducer.java @@ -0,0 +1,28 @@ +package com.greate.community.event; + +import com.alibaba.fastjson.JSONObject; +import com.greate.community.entity.Event; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.kafka.core.KafkaTemplate; +import org.springframework.stereotype.Component; + +/** + * 事件的生产者 + */ +@Component +public class EventProducer { + + @Autowired + private KafkaTemplate kafkaTemplate; + + /** + * 处理事件 + * @param event + */ + public void fireEvent(Event event) { + // 将事件发布到指定的主题 + kafkaTemplate.send(event.getTopic(), JSONObject.toJSONString(event)); + } + + +} diff --git a/src/main/java/com/greate/community/service/CommentService.java b/src/main/java/com/greate/community/service/CommentService.java index 019954e1..67bf0947 100644 --- a/src/main/java/com/greate/community/service/CommentService.java +++ b/src/main/java/com/greate/community/service/CommentService.java @@ -13,6 +13,9 @@ import org.springframework.web.util.HtmlUtils; import java.util.List; +/** + * 评论相关 + */ @Service public class CommentService implements CommunityConstant { @@ -25,6 +28,16 @@ public class CommentService implements CommunityConstant { @Autowired private DiscussPostSerivce discussPostSerivce; + /** + * 根据 id 查询评论 + * @param id + * @return + */ + public Comment findCommentById(int id) { + return commentMapper.selectCommentById(id); + } + + /** * 根据评论目标(类别、id)对评论进行分页查询 * @param entityType diff --git a/src/main/java/com/greate/community/service/DiscussPostSerivce.java b/src/main/java/com/greate/community/service/DiscussPostSerivce.java index b505a3d0..8a536824 100644 --- a/src/main/java/com/greate/community/service/DiscussPostSerivce.java +++ b/src/main/java/com/greate/community/service/DiscussPostSerivce.java @@ -9,6 +9,9 @@ import org.springframework.web.util.HtmlUtils; import java.util.List; +/** + * 帖子相关 + */ @Service public class DiscussPostSerivce { diff --git a/src/main/java/com/greate/community/service/FollowService.java b/src/main/java/com/greate/community/service/FollowService.java new file mode 100644 index 00000000..40ade2f9 --- /dev/null +++ b/src/main/java/com/greate/community/service/FollowService.java @@ -0,0 +1,172 @@ +package com.greate.community.service; + +import com.greate.community.entity.User; +import com.greate.community.util.CommunityConstant; +import com.greate.community.util.RedisKeyUtil; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.dao.DataAccessException; +import org.springframework.data.redis.core.RedisOperations; +import org.springframework.data.redis.core.RedisTemplate; +import org.springframework.data.redis.core.SessionCallback; +import org.springframework.stereotype.Service; + +import java.util.*; + +/** + * 关注相关 + */ +@Service +public class FollowService implements CommunityConstant { + + @Autowired + private RedisTemplate redisTemplate; + + @Autowired + private UserService userService; + + /** + * 关注 + * @param userId + * @param entityType + * @param entityId + */ + public void follow(int userId, int entityType, int entityId) { + redisTemplate.execute(new SessionCallback() { + @Override + public Object execute(RedisOperations redisOperations) throws DataAccessException { + // 生成 Redis 的 key + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + String followerKey = RedisKeyUtil.getFollowerKey(entityType, entityId); + + // 开启事务管理 + redisOperations.multi(); + + // 插入数据 + redisOperations.opsForZSet().add(followeeKey, entityId, System.currentTimeMillis()); + redisOperations.opsForZSet().add(followerKey, userId, System.currentTimeMillis()); + + // 提交事务 + return redisOperations.exec(); + } + }); + } + + /** + * 取消关注 + * @param userId + * @param entityType + * @param entityId + */ + public void unfollow(int userId, int entityType, int entityId) { + redisTemplate.execute(new SessionCallback() { + @Override + public Object execute(RedisOperations redisOperations) throws DataAccessException { + // 生成 Redis 的 key + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + String followerKey = RedisKeyUtil.getFollowerKey(entityType, entityId); + + // 开启事务管理 + redisOperations.multi(); + + // 删除数据 + redisOperations.opsForZSet().remove(followeeKey, entityId); + redisOperations.opsForZSet().remove(followerKey, userId); + + // 提交事务 + return redisOperations.exec(); + } + }); + } + + /** + * 查询某个用户关注的实体的数量 + * @param userId 用户 id + * @param entityType 实体类型 + * @return + */ + public long findFolloweeCount(int userId, int entityType) { + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + return redisTemplate.opsForZSet().zCard(followeeKey); + } + + /** + * 查询某个实体的粉丝数量 + * @param entityType + * @param entityId + * @return + */ + public long findFollowerCount(int entityType, int entityId) { + String followerKey = RedisKeyUtil.getFollowerKey(entityType, entityId); + return redisTemplate.opsForZSet().zCard(followerKey); + } + + /** + * 判断当前用户是否已关注该实体 + * @param userId + * @param entityType + * @param entityId + * @return + */ + public boolean hasFollowed(int userId, int entityType, int entityId) { + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, entityType); + return redisTemplate.opsForZSet().score(followeeKey, entityId) != null ; + } + + /** + * 分页查询某个用户关注的人(偷个懒,此处没有做对其他实体的关注) + * @param userId + * @param offset + * @param limit + * @return + */ + public List> findFollowees(int userId, int offset, int limit) { + String followeeKey = RedisKeyUtil.getFolloweeKey(userId, ENTITY_TYPE_USER); + Set targetIds = redisTemplate.opsForZSet().reverseRange(followeeKey, offset, offset + limit - 1); + if (targetIds == null) { + return null; + } + List> list = new ArrayList<>(); + for (Integer targetId : targetIds) { + Map map = new HashMap<>(); + + User user = userService.findUserById(targetId); + map.put("user", user); + Double score = redisTemplate.opsForZSet().score(followeeKey, targetId); + map.put("followTime", new Date(score.longValue())); + + list.add(map); + } + + return list; + } + + /** + * 分页查询某个用户的粉丝(偷个懒,此处没有做对其他实体的粉丝) + * @param userId + * @param offset + * @param limit + * @return + */ + public List> findFollowers(int userId, int offset, int limit) { + String followerKey = RedisKeyUtil.getFollowerKey(ENTITY_TYPE_USER, userId); + Set targetIds = redisTemplate.opsForZSet().reverseRange(followerKey, offset, offset + limit - 1); + if (targetIds == null) { + return null; + } + List> list = new ArrayList<>(); + for (Integer targetId : targetIds) { + Map map = new HashMap<>(); + + User user = userService.findUserById(targetId); + map.put("user", user); + Double score = redisTemplate.opsForZSet().score(followerKey, targetId); + map.put("followTime", new Date(score.longValue())); + + list.add(map); + } + + return list; + + } + +} diff --git a/src/main/java/com/greate/community/service/MessageService.java b/src/main/java/com/greate/community/service/MessageService.java index 41a697d8..28069abb 100644 --- a/src/main/java/com/greate/community/service/MessageService.java +++ b/src/main/java/com/greate/community/service/MessageService.java @@ -9,6 +9,9 @@ import org.springframework.web.util.HtmlUtils; import java.util.List; +/** + * 私信/系统通知相关 + */ @Service public class MessageService { @@ -58,4 +61,46 @@ public class MessageService { return messageMapper.insertMessage(message); } + /** + * 查询某个主题下最新的系统通知 + * @param userId + * @param topic + * @return + */ + public Message findLatestNotice(int userId, String topic) { + return messageMapper.selectLatestNotice(userId, topic); + } + + /** + * 查询某个主题下包含的系统通知数量 + * @param userId + * @param topic + * @return + */ + public int findNoticeCount(int userId, String topic) { + return messageMapper.selectNoticeCount(userId, topic); + } + + /** + * 查询未读的系统通知数量 + * @param userId + * @param topic + * @return + */ + public int findNoticeUnReadCount(int userId, String topic) { + return messageMapper.selectNoticeUnReadCount(userId, topic); + } + + /** + * 查询某个主题所包含的通知列表 + * @param userId + * @param topic + * @param offset + * @param limit + * @return + */ + public List findNotices(int userId, String topic, int offset, int limit) { + return messageMapper.selectNotices(userId, topic, offset, limit); + } + } diff --git a/src/main/java/com/greate/community/service/UserService.java b/src/main/java/com/greate/community/service/UserService.java index 9a5a39ed..355d5d03 100644 --- a/src/main/java/com/greate/community/service/UserService.java +++ b/src/main/java/com/greate/community/service/UserService.java @@ -7,9 +7,11 @@ import com.greate.community.entity.User; import com.greate.community.util.CommunityConstant; import com.greate.community.util.CommunityUtil; import com.greate.community.util.MailClient; +import com.greate.community.util.RedisKeyUtil; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; +import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; import org.springframework.ui.Model; import org.thymeleaf.TemplateEngine; @@ -19,7 +21,12 @@ import java.util.Date; import java.util.HashMap; import java.util.Map; import java.util.Random; +import java.util.concurrent.TimeUnit; + +/** + * 用户相关 + */ @Service public class UserService implements CommunityConstant { @@ -33,7 +40,10 @@ public class UserService implements CommunityConstant { private TemplateEngine templateEngine; @Autowired - private LoginTicketMapper loginTicketMapper; + private RedisTemplate redisTemplate; + + // @Autowired + // private LoginTicketMapper loginTicketMapper; // 网站域名 @Value("${community.path.domain}") @@ -49,7 +59,12 @@ public class UserService implements CommunityConstant { * @return */ public User findUserById (int id) { - return userMapper.selectById(id); + // return userMapper.selectById(id); + User user = getCache(id); // 优先从缓存中查询数据 + if (user == null) { + user = initCache(id); + } + return user; } /** @@ -139,6 +154,7 @@ public class UserService implements CommunityConstant { else if (user.getActivationCode().equals(code)) { // 修改用户状态为已激活 userMapper.updateStatus(userId, 1); + clearCache(userId); // 用户信息变更,清除缓存中的旧数据 return ACTIVATION_SUCCESS; } else { @@ -194,7 +210,11 @@ public class UserService implements CommunityConstant { loginTicket.setStatus(0); // 设置凭证状态为有效(当用户登出的时候,设置凭证状态为无效) loginTicket.setExpired(new Date(System.currentTimeMillis() + expiredSeconds * 1000)); // 设置凭证到期时间 - loginTicketMapper.insertLoginTicket(loginTicket); + // loginTicketMapper.insertLoginTicket(loginTicket); + // 将登录凭证存入 redis + String redisKey = RedisKeyUtil.getTicketKey(loginTicket.getTicket()); + redisTemplate.opsForValue().set(redisKey, loginTicket); + map.put("ticket", loginTicket.getTicket()); @@ -206,7 +226,13 @@ public class UserService implements CommunityConstant { * @param ticket */ public void logout(String ticket) { - loginTicketMapper.updateStatus(ticket, 1); + // loginTicketMapper.updateStatus(ticket, 1); + // 修改(先删除再插入)对应用户在 redis 中的凭证 + String redisKey = RedisKeyUtil.getTicketKey(ticket); + LoginTicket loginTicket = (LoginTicket) redisTemplate.opsForValue().get(redisKey); + loginTicket.setStatus(1); + redisTemplate.opsForValue().set(redisKey, loginTicket); + } /** @@ -215,7 +241,9 @@ public class UserService implements CommunityConstant { * @return */ public LoginTicket findLoginTicket(String ticket) { - return loginTicketMapper.selectByTicket(ticket); + // return loginTicketMapper.selectByTicket(ticket); + String redisKey = RedisKeyUtil.getTicketKey(ticket); + return (LoginTicket) redisTemplate.opsForValue().get(redisKey); } /** @@ -225,7 +253,10 @@ public class UserService implements CommunityConstant { * @return */ public int updateHeader(int userId, String headUrl) { - return userMapper.updateHeader(userId, headUrl); + // return userMapper.updateHeader(userId, headUrl); + int rows = userMapper.updateHeader(userId, headUrl); + clearCache(userId); + return rows; } /** @@ -240,5 +271,35 @@ public class UserService implements CommunityConstant { return userMapper.updatePassword(userId, newPassword); } + /** + * 优先从缓存中取值 + * @param userId + * @return + */ + private User getCache(int userId) { + String redisKey = RedisKeyUtil.getUserKey(userId); + return (User) redisTemplate.opsForValue().get(redisKey); + } + + /** + * 缓存中没有该用户信息时,则将其存入缓存 + * @param userId + * @return + */ + private User initCache(int userId) { + User user = userMapper.selectById(userId); + String redisKey = RedisKeyUtil.getUserKey(userId); + redisTemplate.opsForValue().set(redisKey, user, 3600, TimeUnit.SECONDS); + return user; + } + + /** + * 用户信息变更时清除对应缓存数据 + * @param userId + */ + private void clearCache(int userId) { + String redisKey = RedisKeyUtil.getUserKey(userId); + redisTemplate.delete(redisKey); + } } diff --git a/src/main/java/com/greate/community/util/CommunityConstant.java b/src/main/java/com/greate/community/util/CommunityConstant.java index c26da408..dffb0287 100644 --- a/src/main/java/com/greate/community/util/CommunityConstant.java +++ b/src/main/java/com/greate/community/util/CommunityConstant.java @@ -20,10 +20,25 @@ public interface CommunityConstant { // 记住我状态下的凭证超时时间 (100天) int REMEMBER_EXPIRED_SECONDS = 3600 * 24 * 100; - // 评论目标类型:帖子 + // 实体类型:帖子 int ENTITY_TYPE_POST = 1; - // 评论目标类型:评论 + // 实体类型:评论 int ENTITY_TYPE_COMMENT = 2; + // 实体类型:人 + int ENTITY_TYPE_USER = 3; + + // Kafka 主题:评论 + String TOPIC_COMMNET = "comment"; + + // Kafka 主题:点赞 + String TOPIC_LIKE = "like"; + + // Kafka 主题:评论 + String TOPIC_FOLLOW = "follow"; + + // 系统用户的 id + int SYSTEM_USER_ID = 1; + } diff --git a/src/main/java/com/greate/community/util/RedisKeyUtil.java b/src/main/java/com/greate/community/util/RedisKeyUtil.java index cb50457d..e3f42f16 100644 --- a/src/main/java/com/greate/community/util/RedisKeyUtil.java +++ b/src/main/java/com/greate/community/util/RedisKeyUtil.java @@ -6,20 +6,85 @@ package com.greate.community.util; public class RedisKeyUtil { private static final String SPLIT = ":"; - private static final String PREFIX_ENTITY_LIKE = "like:entity"; - private static final String PREFIX_USER_LIKE = "like:user"; + private static final String PREFIX_ENTITY_LIKE = "like:entity"; // 实体的获赞 + private static final String PREFIX_USER_LIKE = "like:user"; // 用户的获赞 + private static final String PREFIX_FOLLOWER = "follower"; // 被关注(粉丝) + private static final String PREFIX_FOLLOWEE = "followee"; // 关注的目标 + private static final String PREFIX_KAPTCHA = "kaptcha"; // 验证码 + private static final String PREFIX_TICKET = "ticket"; // 登录凭证 + private static final String PREFIX_USER = "user"; // 登录凭证 - // 某个实体(帖子、评论/回复)的赞 - // like:entity:entityType:entityId -> set(userId) - // 谁给这个实体点了赞,就将这个用户的id存到这个实体对应的集合里 + + /** + * 某个实体(帖子、评论/回复)的获赞 + * like:entity:entityType:entityId -> set(userId) + * 谁给这个实体点了赞,就将这个用户的id存到这个实体对应的集合里 + * @param entityType + * @param entityId + * @return + */ public static String getEntityLikeKey(int entityType, int entityId) { return PREFIX_ENTITY_LIKE + SPLIT + entityType + SPLIT + entityId; } - // 某个用户的赞(被赞) - // like:user:userId -> int + /** + * 某个用户的获赞 + * like:user:userId -> int + * @param userId 获赞用户的 id + * @return + */ public static String getUserLikeKey(int userId) { - return PREFIX_ENTITY_LIKE + SPLIT + userId; + return PREFIX_USER_LIKE + SPLIT + userId; + } + + /** + * 某个用户关注的实体 + * followee:userId:entityType -> zset(entityId, now) 以当前关注的时间进行排序 + * @param userId 粉丝的 id + * @param entityType 关注的实体类型 + * @return + */ + public static String getFolloweeKey(int userId, int entityType) { + return PREFIX_FOLLOWEE + SPLIT + userId + SPLIT + entityType; + } + + /** + * 某个实体拥有的粉丝 + * follower:entityType:entityId -> zset(userId, now) + * @param entityType + * @param entityId + * @return + */ + public static String getFollowerKey(int entityType, int entityId) { + return PREFIX_FOLLOWER + SPLIT + entityType + SPLIT + entityId; + } + + /** + * 登录验证码(指定这个验证码是针对哪个用户的) + * @param owner 用户进入登录页面的时候,由于此时用户还未登录,无法通过 id 标识用户 + * 随机生成一个字符串,短暂的存入 cookie,使用这个字符串来标识这个用户 + * @return + */ + public static String getKaptchaKey(String owner) { + return PREFIX_KAPTCHA + SPLIT + owner; + } + + /** + * 登陆凭证 + * @param ticket + * @return + */ + public static String getTicketKey(String ticket) { + return PREFIX_TICKET + SPLIT + ticket; + } + + /** + * 用户信息 + * @param userId + * @return + */ + public static String getUserKey(int userId) { + return PREFIX_USER + SPLIT + userId; } } diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 1371eeeb..73217e95 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -38,3 +38,10 @@ spring.mail.properties.mail.smtp.ssl.enable = true spring.redis.database = 11 spring.redis.host = localhost spring.redis.port = 6379 + +# Kafka +spring.kafka.bootstrap-servers = localhost:9092 +# ֶμ Kafka װе consumer.proerties޸, ޸ϺҪ Kafka +spring.kafka.consumer.group-id = test-consumer-group +spring.kafka.consumer.enable-auto-commit = true +spring.kafka.consumer.auto-commit-interval = 3000 diff --git a/src/main/resources/mapper/comment-mapper.xml b/src/main/resources/mapper/comment-mapper.xml index c139a1d1..321cc48c 100644 --- a/src/main/resources/mapper/comment-mapper.xml +++ b/src/main/resources/mapper/comment-mapper.xml @@ -12,6 +12,12 @@ user_id, entity_type, entity_id, target_id, content, status, create_time + + + select + from message + where id in ( + select max(id) from message + where status != 2 + and from_id = 1 + and to_id = #{userId} + and conversation_id = #{topic} + ) + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/static/css/global.css b/src/main/resources/static/css/global.css index b3acfd24..fe6a7156 100644 --- a/src/main/resources/static/css/global.css +++ b/src/main/resources/static/css/global.css @@ -78,7 +78,7 @@ header .navbar { header .badge { position: absolute; top: -3px; - left: 33px; + left: 60px; } .navbar-dark .navbar-toggler { @@ -194,4 +194,4 @@ a:hover { em { font-style: normal; color: red; -} +} \ No newline at end of file diff --git a/src/main/resources/static/css/letter.css b/src/main/resources/static/css/letter.css index 184155d0..8556041a 100644 --- a/src/main/resources/static/css/letter.css +++ b/src/main/resources/static/css/letter.css @@ -1,13 +1,13 @@ .main .nav .badge { position: absolute; top: -3px; - left: 68px; + left: 90px; } .main .media .badge { position: absolute; top: 12px; - left: -3px; + left: 8px; } .toast { diff --git a/src/main/resources/static/js/discuss.js b/src/main/resources/static/js/discuss.js index a787740d..244c9438 100644 --- a/src/main/resources/static/js/discuss.js +++ b/src/main/resources/static/js/discuss.js @@ -1,7 +1,7 @@ -function like(btn, entityType, entityId, entityUserId) { +function like(btn, entityType, entityId, entityUserId, postId) { $.post( CONTEXT_PATH + "/like", - {"entityType":entityType, "entityId":entityId, "entityUserId":entityUserId}, + {"entityType":entityType, "entityId":entityId, "entityUserId":entityUserId, "postId":postId }, function(data) { data = $.parseJSON(data); if (data.code == 0) { diff --git a/src/main/resources/static/js/profile.js b/src/main/resources/static/js/profile.js index 05c68e3b..84b0b5b5 100644 --- a/src/main/resources/static/js/profile.js +++ b/src/main/resources/static/js/profile.js @@ -6,9 +6,35 @@ function follow() { var btn = this; if($(btn).hasClass("btn-info")) { // 关注TA - $(btn).text("已关注").removeClass("btn-info").addClass("btn-secondary"); + $.post( + CONTEXT_PATH + "/follow", + {"entityType":3, "entityId":$(btn).prev().val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 偷个懒,直接刷新界面 + window.location.reload(); + } + else { + alert(data.msg); + } + } + ) } else { // 取消关注 - $(btn).text("关注TA").removeClass("btn-secondary").addClass("btn-info"); + $.post( + CONTEXT_PATH + "/unfollow", + {"entityType":3, "entityId":$(btn).prev().val()}, + function (data) { + data = $.parseJSON(data); + if (data.code == 0) { + // 偷个懒,直接刷新界面 + window.location.reload(); + } + else { + alert(data.msg); + } + } + ) } } \ No newline at end of file diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 8c0f08eb..347d2443 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -32,7 +32,7 @@